A cross-platform signed 64-bit integer. Int64 instances can be created from two 32-bit words using Int64.make().
Int64.make()
staticdivMod(dividend:Int64, divisor:Int64):{quotient:Int64, modulus:Int64}
Performs signed integer divison of dividend by divisor. Returns { quotient : Int64, modulus : Int64 }.
dividend
divisor
{ quotient : Int64, modulus : Int64 }