Int64 helper methods.
Int64
@:value(haxe.Int64.make(0x7fffffff, 0xffffffff))staticmaxValue:Int64 = haxe.Int64.make(0x7fffffff, 0xffffffff)
@:value(haxe.Int64.make(0x80000000, 0x00000001))staticminValue:Int64 = haxe.Int64.make(0x80000000, 0x00000001)
@:value(Int64.make(0, 1))staticone:Int64 = Int64.make(0, 1)
@:value(Int64.ofInt(10))staticten:Int64 = Int64.ofInt(10)
@:value(Int64.ofInt(2))statictwo:Int64 = Int64.ofInt(2)
@:value(Int64.make(0, 0))staticzero:Int64 = Int64.make(0, 0)
staticabs(value:Int64):Int64
staticcompare(a:Int64, b:Int64):Int
staticdivCeil(num:Int64, div:Int64):Int64
staticdivFloor(num:Int64, div:Int64):Int64
staticdivRound(num:Int64, div:Int64):Int64
staticfromFloat(f:Float):Int64
staticparse(s:String):Int64
statictoFloat(i:Int64):Float
Converts an Int64 to Float;
Float
Implementation by Elliott Stoneham.
staticinlinetoInt64(s:String):Int64
Alias for parse, mainly for disambiguation with other parses using mega Thx.