Contains standard libraries for ZenCode.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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