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. }