这里有一个名为set.ml的模块文件IntSet。如何在相应的接口(interface)文件IntSet中引用模块set.mli

module IntSet = struct
  type t = int list;;
  let empty = [];;
  let rec is_member key = function
    | [] -> false
    | (x::xs) -> (
      if x = key then true
      else is_member key xs
    );;
end;;

let join xs ys = xs @ ys;;

这是set.mlival join : IntSet.t -> IntSet.t -> IntSet.t
如果尝试编译它,则会收到错误消息,声称模块IntSet未绑定(bind)。
% corebuild set.native
+ ocamlfind ocamlc -c -w A-4-33-40-41-42-43-34-44 -strict-sequence -g -bin-annot -short-paths -thread -package core -ppx 'ppx-jane -as-ppx' -o set.cmi set.mli
File "set.mli", line 1, characters 11-19:
Error: Unbound module IntSet
Command exited with code 2.
Hint: Recursive traversal of subdirectories was not enabled for this build,
  as the working directory does not look like an ocamlbuild project (no
  '_tags' or 'myocamlbuild.ml' file). If you have modules in subdirectories,
  you should add the option "-r" or create an empty '_tags' file.

  To enable recursive traversal for some subdirectories only, you can use the
  following '_tags' file:

      true: -traverse
      <dir1> or <dir2>: traverse

Compilation unsuccessful after building 3 targets (1 cached) in 00:00:00.

如何公开在set.ml中定义的模块,以便可以在定义中使用它?

最佳答案

我将set.mli更改为此,编译器似乎很高兴:

module IntSet : sig type t end
val join : IntSet.t -> IntSet.t -> IntSet.t

要使事情变得可用,可能还有更多工作要做。例如,无法使类型为IntSet.t的值。

09-17 08:14