| Functions |
__close__() - Used for implementation of a Stream class |
__read__(number) - Used for implementation of a Stream class |
__write__(string) - Used for implementation of a Stream class |
close() - Flush and then close the stream |
constructor() - The constructor of the Stream. Must be called when inheriting |
eos() - Check to see if the stream is at it's end |
flush() - Force the stream to be flushed |
getc() - Read a character from the stream |
getError() - Get the last error from the stream as a string |
print(string) - Write a string to the stream |
printf(string,void) - Write a string to the stream, formatted using parameters |
println(string) - Write a string to the stream, appending the end of line string afterwards |
putc(string) - Write a character to the stream |
read(number) - Read a number of characters from the stream |
readln() - Read a line from the stream |
setAggressive(number) - Set the stream to be aggressive |
setEndOfLine(string) - Set the end of line delimeter for the reading and writing methods |
ungetc(string) - Push a character back onto the internal buffer |
write(string) - Write a string to the stream |
writeln(string) - Write a string to the stream, appending the end of line string afterwards |