Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
    Page
Library
Module
Module type
Parameter
Class
Class type
Source
Pass_codegen.Enuminclude module type of struct include Batteries.Enum endmodule type Enumerable = sig ... endtype 'a enumerable = 'a ttype 'a mappable = 'a tval iter : ('a -> unit) -> 'a t -> unitval exists : ('a -> bool) -> 'a t -> boolval for_all : ('a -> bool) -> 'a t -> boolval fold : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'bval reduce : ('a -> 'a -> 'a) -> 'a t -> 'aval sum : int t -> intval fsum : float t -> floatval kahan_sum : float t -> floatval iteri : (int -> 'a -> unit) -> 'a t -> unitval foldi : (int -> 'a -> 'b -> 'b) -> 'b -> 'a t -> 'bval find : ('a -> bool) -> 'a t -> 'aval find_map : ('a -> 'b option) -> 'a t -> 'bval is_empty : 'a t -> boolval peek : 'a t -> 'a optionval get : 'a t -> 'a optionval get_exn : 'a t -> 'aval push : 'a t -> 'a -> unitval junk : 'a t -> unitval force : 'a t -> unitval drop : int -> 'a t -> unitval empty : unit -> 'a tval from : (unit -> 'a) -> 'a tval from_while : (unit -> 'a option) -> 'a tval from_loop : 'b -> ('b -> 'a * 'b) -> 'a tval seq : 'a -> ('a -> 'a) -> ('a -> bool) -> 'a tval unfold : 'b -> ('b -> ('a * 'b) option) -> 'a tval init : int -> (int -> 'a) -> 'a tval singleton : 'a -> 'a tval repeat : ?times:int -> 'a -> 'a tval to_object : 'a t -> < clone : 'b ; count : int ; next : 'a > as 'bval of_object : (< clone : 'b ; count : int ; next : 'a > as 'b) -> 'a tval combination : ?repeat:bool -> int -> int -> int list tval count : 'a t -> intval fast_count : 'a t -> boolval hard_count : 'a t -> intval range : ?until:int -> int -> int tval arg_min : ('a -> 'b) -> 'a t -> 'aval arg_max : ('a -> 'b) -> 'a t -> 'aval (--) : int -> int -> int tval (--^) : int -> int -> int tval (--.) : (float * float) -> float -> float tval (---) : int -> int -> int tval (--~) : char -> char -> char tval print : 
  ?first:string ->
  ?last:string ->
  ?sep:string ->
  ('a BatInnerIO.output -> 'b -> unit) ->
  'a BatInnerIO.output ->
  'b t ->
  unitval print_at_most : 
  ?first:string ->
  ?last:string ->
  ?sep:string ->
  limit:int ->
  ('a BatInnerIO.output -> 'b -> unit) ->
  'a BatInnerIO.output ->
  'b t ->
  unitval ising : 'a -> 'a tval lsing : (unit -> 'a) -> 'a tcollects each x, y in this enumeration into respective lists xs, ys. *