我有airport.mli
和airport.ml
。
中airport.ml
,我有
module AirportSet = Set.Make(struct type t = airport let compare = compare end);;
这没有问题。
然后我有一个功能
val get_all_airport : unit -> AirportSet.t;;
, 生成一个AirportSet
.
所以在 中airport.mli
,我需要证明module AirportSet
soAirportSet
是被认可的。
我怎样才能做到这一点?