int.ml
pp-binary-ints
1 2 3 4 5 6 7 8 9 10 module Int: MakePP.S with type t = int = Stdlib.Int module Dec = struct let prefix = "0b" let suffix = "" end module Flags = Flags include (MakePP.Make (Int) (Dec))
1 2 3 4 5 6 7 8 9 10
module Int: MakePP.S with type t = int = Stdlib.Int module Dec = struct let prefix = "0b" let suffix = "" end module Flags = Flags include (MakePP.Make (Int) (Dec))