csci2041/public-class-repo/SamplePrograms/Intervals/v5/intInterval.ml
Michael Zhang 399845160c
f
2018-01-29 17:35:31 -06:00

28 lines
653 B
OCaml

open Intervals
module Int_interval = Make_interval(
struct
type t = int
let compare = compare
let to_string = string_of_int
end)
(* The following line causes an error.
We've provided 'create' the values of type 'int' and this is the
same as Int.t' which is the same as EndPoint.t.
But 'endpoint' in Int_interval is bound to the type
'Make_interval(Core.Std.Int).endpoint'
We've failed to indicate that the endpoint in Int_interval is
related to the type in the Int module that is input to the
Make_interval functor.
We also need to make sure this type is not hidden.
*)
let i = Int_interval.create 3 4