Flagsmodule type Make_arg = sig ... endmodule type S = sig ... endmodule type S_binable = sig ... endval create : bit:int -> Core.Int63.t @@ portablecreate ~bit:n creates a flag with the nth bit set. n must be between 0 and
62.
Typically a flag has one bit set; create is useful in exactly those cases. For flags with multiple bits one can either define the Int63.t directly or create it in terms of simpler flags, using + and -.
Flags.Make builds a new flags module. If there is an error in the known flags, it behaves as per on_error.
module Make_binable (M : Make_arg) : sig ... endSimilar to Flags.Make, but the resulting type t is binable.