haXe API Documentation
Back | Index
class haxe.io.Output
Available in flash8, neko, js, flash, php, cpp
An Output is an abstract write. A specific output implementation will only have to override the writeChar and maybe the write, flush and close methods. See File.write and String.write for two ways of creating an Output.
var bigEndian(default,dynamic) : Bool
function close() : Void
function flush() : Void
function prepare(nbytes : Int) : Void
function write(s : Bytes) : Void
function writeByte(c : Int) : Void
function writeBytes(s : Bytes, pos : Int, len : Int) : Int
function writeDouble(x : Float) : Void
function writeFloat(x : Float) : Void
function writeFullBytes(s : Bytes, pos : Int, len : Int) : Void
function writeInput(i : Input, ?bufsize : Int) : Void
function writeInt16(x : Int) : Void
function writeInt24(x : Int) : Void
function writeInt32(x : Int) : Void
function writeInt8(x : Int) : Void
function writeString(s : String) : Void
function writeUInt16(x : Int) : Void
function writeUInt24(x : Int) : Void
Back | Index