File: int64ext.ml

package info (click to toggle)
xen-api-libs 0.5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,940 kB
  • sloc: ml: 13,925; sh: 2,930; ansic: 1,699; makefile: 1,240; python: 83
file content (17 lines) | stat: -rw-r--r-- 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Int64 = struct

	module Operators = struct

		let ( +++ ) = Int64.add
		let ( --- ) = Int64.sub
		let ( *** ) = Int64.mul
		let ( /// ) = Int64.div
		let ( &&& ) = Int64.logand
		let ( ||| ) = Int64.logor
		let ( <<< ) = Int64.shift_left
		let ( >>> ) = Int64.shift_right_logical
		let ( !!! ) = Int64.lognot

	end

end