method s open name [options] flags arg_rw Stream s ; arg Str name [; arg Int options] ; arg Int flags
method s close arg_rw Stream s
method s raw_read address size arg_rw Stream s ; arg address address ; arg Int size
method s raw_write address size arg_rw Stream s ; arg address address ; arg Int size
method s read_available address size [maxi] arg_rw Stream s ; arg_w address address ; arg_w Int size [ ; arg Int maxi]
method s flush level arg_rw Stream s ; arg Int level
function raw_copy src dest mini maxi -> copyed arg_rw Stream src dest ; arg Int mini maxi copyed
method s atend -> e arg_rw Stream s ; arg CBool e
method s is_open -> open arg_rw Stream s ; arg CBool open
method s is_crashed -> crashed arg_rw Stream s ; arg CBool crashed
method s writechars string arg_rw Stream s ; arg Str string
method s eol arg_rw Stream s
method s writeline string arg_rw Stream s ; arg Str string
method s readline -> line arg_rw Stream s ; arg Str line
method s query question -> answer arg_rw Stream s ; arg Str question answer
method s configure command -> status arg_rw Stream s ; arg Str command ; arg Status status