Contains standard libraries for ZenCode.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

InputStream.zs 334B

1234567891011121314
  1. [Native("io::InputStream")]
  2. public interface InputStream {
  3. [Native("read")]
  4. read() as int throws IOException;
  5. [Native("readArray")]
  6. read(array as byte[]) as usize throws IOException;
  7. [Native("readSlice")]
  8. read(array as byte[], offset as usize, length as usize) as usize throws IOException;
  9. [Native("destruct")]
  10. ~this;
  11. }