haXe API Documentation
Back | Index
class haxe.io.Input
Available in flash, neko, js, flash9, php, cpp
An Input is an abstract reader. See other classes in the haxe.io package for several possible implementations.
var bigEndian(default,setEndian) : Bool
function close() : Void
function read(nbytes : Int) : Bytes
function readAll(?bufsize : Int) : Bytes
function readByte() : Int
function readBytes(s : Bytes, pos : Int, len : Int) : Int
function readDouble() : Float
function readFloat() : Float
function readFullBytes(s : Bytes, pos : Int, len : Int) : Void
function readInt16() : Int
function readInt24() : Int
function readInt31() : Int
function readInt32() : haxe.Int32
function readInt8() : Int
function readLine() : String
function readString(len : Int) : String
function readUInt16() : Int
function readUInt24() : Int
function readUInt30() : Int
function readUntil(end : Int) : String
Back | Index