Output

class haxe.io.OutputAvailable in flash, flash9, neko, js, php, cppAn Output is an abstract write. A specific output implementation will only have to override the writeByte and maybe the write, flush and close methods. See File.write and String.write for two ways of creating an Output. var bigEndian(default,setEndian) : BoolIf true, output is written in big endian format. Default is false. function close() : Void function flush() : Void function prepare( nbytes : Int ) : VoidInform that we are about to write at least a specified number of bytes. The underlying implementation can allocate proper working space depending on this information, or simply ignore it. This is not a mandatory call but a tip and is only used in some specific cases. 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 writeInt31( x : Int ) : Void function writeInt32( x : Int32 ) : Void function writeInt8( x : Int ) : Void function writeString( s : String ) : Void function writeUInt16( x : Int ) : Void function writeUInt24( x : Int ) : Void function writeUInt30( x : Int ) : Void
version #6459, modified 2009-07-26 17:45:37 by api