ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Reader.zs 245B

12345678910
  1. export interface Reader {
  2. ~this;
  3. read() as int throws IOException;
  4. read(buffer as char[]) as int throws IOException
  5. => read(buffer, 0, buffer.length);
  6. read(buffer as char[], offset as int, length as int) as int throws IOException;
  7. }