ArrayBase.hx 244 B

1234567891011
  1. package cpp;
  2. extern class ArrayBase
  3. {
  4. // Length is number of elements
  5. public var length(default,null):Int;
  6. public function getElementSize():Int;
  7. public function getByteCount():Int;
  8. public function getBase():RawPointer<Char>;
  9. }