module Operators:sig..end
typeint63 =Int63.t
val (+^) : Int63.t -> Int63.t -> Int63.tval (-^) : Int63.t -> Int63.t -> Int63.tval (*^) : Int63.t -> Int63.t -> Int63.tval (/^) : Int63.t -> Int63.t -> Int63.tval (%^) : Int63.t -> Int63.t -> Int63.ta +^ b -^ cval (<^<) : Int63.t -> int -> Int63.tval (>^>) : Int63.t -> int -> Int63.t~^1 <^< 62
NB: We cannot use two less-than signs or two greater-than signs
in a row because that clashes with the symbols used for
camlp4 quotations.
val (&^) : Int63.t -> Int63.t -> Int63.tval (|^) : Int63.t -> Int63.t -> Int63.tval (^^) : Int63.t -> Int63.t -> Int63.tbits &^ maskval (~^) : int -> Int63.t~^0 is the constant zero and ~^1 is the constant one.val (~^~) : int -> Int63.t~^~1 is the constant minus one.