Module CCInt64.Infix
val (/) : t -> t -> tx / yis the integer quotient ofxandy. Integer division. RaiseDivision_by_zeroif the second argumentyis zero. This division rounds the real quotient of its arguments towards zero, as specified forStdlib.(/).
val (mod) : t -> t -> tx mod yis the integer remainder ofx / y. Ify <> zero, the result ofx mod ysatisfies the following properties:zero <= x mod y < abs yandx = ((x / y) * y) + (x mod y). Ify = 0,x mod yraisesDivision_by_zero.
val (lsl) : t -> int -> tx lsl yshiftsxto the left byybits, filling in with zeroes. The result is unspecified ify < 0ory >= 64.
val (lsr) : t -> int -> tx lsr yshiftsxto the right byybits. This is a logical shift: zeroes are inserted in the vacated bits regardless of the sign ofx. The result is unspecified ify < 0ory >= 64.