sig   exception Empty_list   exception Invalid_index of int   exception Different_list_size of string   exception No_more_elements   type 'a t = 'a node_t Lazy.t   and 'a node_t = 'BatLazyList.node_t = Nil | Cons of 'a * 'a t   type 'a enumerable = 'a t   type 'a mappable = 'a t   val nil : 'a t   val cons : '-> 'a t -> 'a t   val ( ^:^ ) : '-> 'a t -> 'a t   val peek : 'a t -> 'a option   val get : 'a t -> ('a * 'a t) option   val from : (unit -> 'a) -> 'a t   val from_while : (unit -> 'a option) -> 'a t   val from_loop : '-> ('-> 'a * 'b) -> 'a t   val seq : '-> ('-> 'a) -> ('-> bool) -> 'a t   val unfold : '-> ('-> ('a * 'b) option) -> 'a t   val init : int -> (int -> 'a) -> 'a t   val make : int -> '-> 'a t   val range : int -> int -> int t   val iter : ('-> 'b) -> 'a t -> unit   val iteri : (int -> '-> unit) -> 'a t -> unit   val map : ('-> 'b) -> 'a t -> 'b t   val mapi : (int -> '-> 'b) -> 'a t -> 'b t   val fold_left : ('-> '-> 'a) -> '-> 'b t -> 'a   val fold_right : ('-> '-> 'b) -> '-> 'a t -> 'b   val eager_fold_right : ('-> '-> 'b) -> 'a t -> '-> 'b   val lazy_fold_right :     ('-> 'Lazy.t -> 'b) -> 'a t -> 'Lazy.t -> 'Lazy.t   val mem : '-> 'a t -> bool   val memq : '-> 'a t -> bool   val find_exn : ('-> bool) -> exn -> 'a t -> 'a   val rfind_exn : ('-> bool) -> exn -> 'a t -> 'a   val index_of : '-> 'a t -> int option   val index_ofq : '-> 'a t -> int option   val rindex_of : '-> 'a t -> int option   val rindex_ofq : '-> 'a t -> int option   val next : 'a t -> 'a node_t   val length : 'a t -> int   val is_empty : 'a t -> bool   val would_at_fail : 'a t -> int -> bool   val hd : 'a t -> 'a   val tl : 'a t -> 'a t   val first : 'a t -> 'a   val last : 'a t -> 'a   val nth : 'a t -> int -> 'a   val mem_assoc : '-> ('a * 'b) t -> bool   val mem_assq : '-> ('a * 'b) t -> bool   val rev : 'a t -> 'a t   val eager_append : 'a t -> 'a t -> 'a t   val rev_append : 'a t -> 'a t -> 'a t   val append : 'a t -> 'a t -> 'a t   val ( ^@^ ) : 'a t -> 'a t -> 'a t   val concat : 'a t t -> 'a t   val flatten : 'a t list -> 'a t   val split_nth : int -> 'a t -> 'a t * 'a t   val unique : ?cmp:('-> '-> int) -> 'a t -> 'a t   val unique_eq : ?eq:('-> '-> bool) -> 'a t -> 'a t   val remove : '-> 'a t -> 'a t   val remove_if : ('-> bool) -> 'a t -> 'a t   val remove_all : '-> 'a t -> 'a t   val remove_all_such : ('-> bool) -> 'a t -> 'a t   val take : int -> 'a t -> 'a t   val drop : int -> 'a t -> 'a t   val take_while : ('-> bool) -> 'a t -> 'a t   val drop_while : ('-> bool) -> 'a t -> 'a t   val to_list : 'a t -> 'a list   val to_stream : 'a t -> 'Stream.t   val to_array : 'a t -> 'a array   val enum : 'a t -> 'BatEnum.t   val of_list : 'a list -> 'a t   val of_stream : 'Stream.t -> 'a t   val of_enum : 'BatEnum.t -> 'a t   val eager_of_list : 'a list -> 'a t   val of_array : 'a array -> 'a t   val filter : ('-> bool) -> 'a t -> 'a t   val exists : ('-> bool) -> 'a t -> bool   val for_all : ('-> bool) -> 'a t -> bool   val filter_map : ('-> 'b option) -> 'a t -> 'b t   val eternity : unit t   val sort : ?cmp:('-> '-> int) -> 'a t -> 'a t   val stable_sort : ('-> '-> int) -> 'a t -> 'a t   val map2 : ('-> '-> 'c) -> 'a t -> 'b t -> 'c t   val iter2 : ('-> '-> unit) -> 'a t -> 'b t -> unit   val fold_left2 : ('-> '-> '-> 'a) -> '-> 'b t -> 'c t -> 'a   val fold_right2 : ('-> '-> '-> 'c) -> 'a t -> 'b t -> '-> 'c   val for_all2 : ('-> '-> bool) -> 'a t -> 'b t -> bool   val exists2 : ('-> '-> bool) -> 'a t -> 'b t -> bool   val combine : 'a t -> 'b t -> ('a * 'b) t   val uncombine : ('a * 'b) t -> 'a t * 'b t   module Infix :     sig       val ( ^:^ ) : '-> 'BatLazyList.t -> 'BatLazyList.t       val ( ^@^ ) : 'BatLazyList.t -> 'BatLazyList.t -> 'BatLazyList.t     end   val print :     ?first:string ->     ?last:string ->     ?sep:string ->     ('BatInnerIO.output -> '-> unit) ->     'BatInnerIO.output -> 'b t -> unit   module Exceptionless :     sig       val find : ('-> bool) -> 'BatLazyList.t -> 'a option       val rfind : ('-> bool) -> 'BatLazyList.t -> 'a option       val findi :         (int -> '-> bool) -> 'BatLazyList.t -> (int * 'a) option       val rfindi :         (int -> '-> bool) -> 'BatLazyList.t -> (int * 'a) option       val split_at :         int ->         'BatLazyList.t ->         [ `Invalid_index of int | `Ok of 'BatLazyList.t * 'BatLazyList.t ]       val at :         'BatLazyList.t -> int -> [ `Invalid_index of int | `Ok of 'a ]       val assoc : '-> ('a * 'b) BatLazyList.t -> 'b option       val assq : '-> ('a * 'b) BatLazyList.t -> 'b option     end   val find : ('-> bool) -> 'BatLazyList.t -> 'a option   val rfind : ('-> bool) -> 'BatLazyList.t -> 'a option   val findi : (int -> '-> bool) -> 'BatLazyList.t -> (int * 'a) option   val rfindi : (int -> '-> bool) -> 'BatLazyList.t -> (int * 'a) option   val split_at :     int ->     'BatLazyList.t ->     [ `Invalid_index of int | `Ok of 'BatLazyList.t * 'BatLazyList.t ]   val at : 'BatLazyList.t -> int -> [ `Invalid_index of int | `Ok of 'a ]   val assoc : '-> ('a * 'b) BatLazyList.t -> 'b option   val assq : '-> ('a * 'b) BatLazyList.t -> 'b option   module Labels :     sig       val iter : f:('-> 'b) -> 'BatLazyList.t -> unit       val iteri : f:(int -> '-> unit) -> 'BatLazyList.t -> unit       val map : f:('-> 'b) -> 'BatLazyList.t -> 'BatLazyList.t       val mapi : f:(int -> '-> 'b) -> 'BatLazyList.t -> 'BatLazyList.t       val fold_left : f:('-> '-> 'a) -> init:'-> 'BatLazyList.t -> 'a       val fold_right :         f:('-> '-> 'b) -> init:'-> 'BatLazyList.t -> 'b       val find_exn : f:('-> bool) -> exn -> 'BatLazyList.t -> 'a       val rfind_exn : f:('-> bool) -> exn -> 'BatLazyList.t -> 'a       val remove_if : f:('-> bool) -> 'BatLazyList.t -> 'BatLazyList.t       val remove_all_such :         f:('-> bool) -> 'BatLazyList.t -> 'BatLazyList.t       val take_while : f:('-> bool) -> 'BatLazyList.t -> 'BatLazyList.t       val drop_while : f:('-> bool) -> 'BatLazyList.t -> 'BatLazyList.t       val filter : f:('-> bool) -> 'BatLazyList.t -> 'BatLazyList.t       val exists : f:('-> bool) -> 'BatLazyList.t -> bool       val for_all : f:('-> bool) -> 'BatLazyList.t -> bool       val filter_map :         f:('-> 'b option) -> 'BatLazyList.t -> 'BatLazyList.t       val map2 :         f:('-> '-> 'c) ->         'BatLazyList.t -> 'BatLazyList.t -> 'BatLazyList.t       val iter2 :         f:('-> '-> unit) -> 'BatLazyList.t -> 'BatLazyList.t -> unit       val fold_right2 :         f:('-> '-> '-> 'c) ->         'BatLazyList.t -> 'BatLazyList.t -> init:'-> 'c       val for_all2 :         f:('-> '-> bool) -> 'BatLazyList.t -> 'BatLazyList.t -> bool       val exists2 :         f:('-> '-> bool) -> 'BatLazyList.t -> 'BatLazyList.t -> bool       module Exceptionless = BatLazyList.Labels.Exceptionless       val find : f:('-> bool) -> 'BatLazyList.t -> 'a option       val rfind : f:('-> bool) -> 'BatLazyList.t -> 'a option       val findi :         f:(int -> '-> bool) -> 'BatLazyList.t -> (int * 'a) option       val rfindi :         f:(int -> '-> bool) -> 'BatLazyList.t -> (int * 'a) option       val split_at :         int ->         'BatLazyList.t ->         [ `Invalid_index of int | `Ok of 'BatLazyList.t * 'BatLazyList.t ]       val at :         'BatLazyList.t -> int -> [ `Invalid_index of int | `Ok of 'a ]       val assoc : '-> ('a * 'b) BatLazyList.t -> 'b option       val assq : '-> ('a * 'b) BatLazyList.t -> 'b option     end end