ZenScript main repository
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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