RawIOBase.hx 301 B

12345678910111213
  1. package python.lib.io;
  2. import python.lib.io.FileIO;
  3. import python.lib.io.IOBase;
  4. extern class RawIOBase extends IOBase{
  5. public function readall():Bytes;
  6. public function read(n:Int=-1):Null<Bytes>;
  7. public function write(b:Bytearray):Null<Int>;
  8. public function readinto(b:Bytearray):Null<Int>;
  9. }