class Input
package haxe.io
extended by NativeInput, BufferInput, BytesInput, NativeInput, NativeInput, FileInput
Available on all platforms
An Input is an abstract reader. See other classes in the haxe.io
package
for several possible implementations.
All functions which read data throw Eof
when the end of the stream
is reached.
Variables
Methods
close():Void
Close the input source.
Behaviour while reading after calling this method is unspecified.
readAll(?bufsize:Int):Bytes
Read and return all available data.
The bufsize
optional argument specifies the size of chunks by
which data is read. Its default value is target-specific.
readBytes(s:Bytes, pos:Int, len:Int):Int
Read len
bytes and write them into s
to the position specified by pos
.
Returns the actual length of read data that can be smaller than len
.
See readFullBytes
that tries to read the exact amount of specified bytes.
readDouble():Float
Read a 64-bit double-precision floating point number.
Endianness is specified by the bigEndian
property.
readFloat():Float
Read a 32-bit floating point number.
Endianness is specified by the bigEndian
property.
readFullBytes(s:Bytes, pos:Int, len:Int):Void
Read len
bytes and write them into s
to the position specified by pos
.
Unlike readBytes
, this method tries to read the exact len
amount of bytes.