haXe API Documentation
Back | Index
class neko.io.Input
Available in neko
An Input is an abstract reader. A specific input implementation will only have to override the readChar and maybe read and close methods. See File and StringInput for two ways of creating an Input.
function close() : Void
function read(nbytes : Int) : String
function readAll(?bufsize : Int) : String
function readBytes(s : String, p : Int, len : Int) : Int
function readChar() : Int
function readDouble() : Float
function readDoubleB() : Float
function readFloat() : Float
function readFloatB() : Float
function readFullBytes(s : String, pos : Int, len : Int) : Void
function readInt16() : Int
function readInt24() : Int
function readInt32() : Int
function readInt8() : Int
function readLine() : String
function readUInt16() : Int
function readUInt16B() : Int
function readUInt24() : Int
function readUInt24B() : Int
function readUInt32() : Int
function readUInt32B() : Int
function readUntil(end : Int) : String
Back | Index