diff --git a/dev/containers/CCList/index.html b/dev/containers/CCList/index.html index 062d3ea9..d1f18c39 100644 --- a/dev/containers/CCList/index.html +++ b/dev/containers/CCList/index.html @@ -9,4 +9,4 @@ return @@ x * x;; val square_even : int list -> int list = <fun> # square_even [1;2;4;3;5;2];; -- : int list = [4; 16; 4]
val (<*>) : ('a -> 'b) t -> 'a t -> 'b tfuns <*> l is product (fun f x -> f x) funs l.
val (<$>) : ('a -> 'b) -> 'a t -> 'b t(<$>) is map.
val return : 'a -> 'a treturn x is x.
val (>>=) : 'a t -> ('a -> 'b t) -> 'b tl >>= f is flat_map f l.
val take : int -> 'a t -> 'a ttake n l takes the n first elements of the list l, drop the rest.
val drop : int -> 'a t -> 'a tdrop n l drops the n first elements of the list l, keep the rest.
val hd_tl : 'a t -> 'a * 'a thd_tl (x :: l) returns hd, l.
if the list is empty.
val take_drop : int -> 'a t -> 'a t * 'a ttake_drop n l returns l1, l2 such that l1 @ l2 = l and length l1 = min (length l) n.
val take_while : ('a -> bool) -> 'a t -> 'a ttake_while f l returns the longest prefix of l for which f is true.
val drop_while : ('a -> bool) -> 'a t -> 'a tdrop_while f l drops the longest prefix of l for which f is true.
val take_drop_while : ('a -> bool) -> 'a t -> 'a t * 'a ttake_drop_while p l = take_while p l, drop_while p l.
val last : int -> 'a t -> 'a tlast n l takes the last n elements of l (or less if l doesn't have that many elements).
val head_opt : 'a t -> 'a optionhead_opt l returns Some x (the first element of the list l) or None if the list l is empty.
val tail_opt : 'a t -> 'a t optiontail_opt l returns Some l' (the given list l without its first element) or None if the list l is empty.
val last_opt : 'a t -> 'a optionlast_opt l returns Some x (the last element of l) or None if the list l is empty.
val find_pred : ('a -> bool) -> 'a t -> 'a optionfind_pred p l finds the first element of l that satisfies p, or returns None if no element satisfies p.
val find_opt : ('a -> bool) -> 'a t -> 'a optionfind_opt p l is the safe version of find.
val find_pred_exn : ('a -> bool) -> 'a t -> 'afind_pred_exn p l is the unsafe version of find_pred.
if no such element is found.
val find_map : ('a -> 'b option) -> 'a t -> 'b optionfind_map f l traverses l, applying f to each element. If for some element x, f x = Some y, then Some y is returned. Otherwise the call returns None.
val find_mapi : (int -> 'a -> 'b option) -> 'a t -> 'b optionfind_mapi f l is like find_map, but also pass the index to the predicate function.
val find_idx : ('a -> bool) -> 'a t -> (int * 'a) optionfind_idx p x returns Some (i,x) where x is the i-th element of l, and p x holds. Otherwise returns None.
val remove : eq:('a -> 'a -> bool) -> key:'a -> 'a t -> 'a tremove ~eq ~key l removes every instance of key from l. Tail-recursive.
equality function.
val filter_map : ('a -> 'b option) -> 'a t -> 'b tfilter_map f l is the sublist of l containing only elements for which f returns Some e. Map and remove elements at the same time.
val keep_some : 'a option t -> 'a tkeep_some l retains only elements of the form Some x. Like filter_map CCFun.id.
val keep_ok : ('a, _) Stdlib.result t -> 'a tkeep_ok l retains only elements of the form Ok x.
val all_some : 'a option t -> 'a t optionall_some l returns Some l' if all elements of l are of the form Some x, or None otherwise.
val all_ok : ('a, 'err) Stdlib.result t -> ('a t, 'err) Stdlib.resultall_ok l returns Ok l' if all elements of l are of the form Ok x, or Error e otherwise (with the first error met).
val sorted_merge : cmp:('a -> 'a -> int) -> 'a list -> 'a list -> 'a listsorted_merge ~cmp l1 l2 merges elements from both sorted list using the given comparison function cmp.
val sort_uniq : cmp:('a -> 'a -> int) -> 'a list -> 'a listsort_uniq ~cmp l sorts the list l using the given comparison function cmp and remove duplicate elements.
val sorted_merge_uniq : cmp:('a -> 'a -> int) -> 'a list -> 'a list -> 'a listsorted_merge_uniq ~cmp l1 l2 merges the sorted lists l1 and l2 and removes duplicates.
val is_sorted : cmp:('a -> 'a -> int) -> 'a list -> boolis_sorted ~cmp l returns true iff l is sorted (according to given order).
the comparison function.
val sorted_insert : cmp:('a -> 'a -> int) -> ?uniq:bool -> 'a -> 'a list -> 'a listsorted_insert ~cmp ?uniq x l inserts x into l such that, if l was sorted, then sorted_insert x l is sorted too.
if true and x is already in sorted position in l, then x is not duplicated. Default false (x will be inserted in any case).
val uniq_succ : eq:('a -> 'a -> bool) -> 'a list -> 'a listuniq_succ ~eq l removes duplicate elements that occur one next to the other. Examples: uniq_succ ~eq:(=) [1;2;1] = [1;2;1]. uniq_succ ~eq:(=) [1;1;2] = [1;2].
val group_succ : eq:('a -> 'a -> bool) -> 'a list -> 'a list listgroup_succ ~eq l groups together consecutive elements that are equal according to eq.
val mapi : (int -> 'a -> 'b) -> 'a t -> 'b tmapi f l is like map, but the function f is applied to the index of the element as first argument (counting from 0), and the element itself as second argument.
val iteri : (int -> 'a -> unit) -> 'a t -> unititeri f l is like iter, but the function f is applied to the index of the element as first argument (counting from 0), and the element itself as second argument.
val iteri2 : (int -> 'a -> 'b -> unit) -> 'a t -> 'b t -> unititeri2 f l1 l2 applies f to the two lists l1 and l2 simultaneously. The integer passed to f indicates the index of element.
when lists do not have the same length.
val foldi : ('b -> int -> 'a -> 'b) -> 'b -> 'a t -> 'bfoldi f init l is like fold but it also passes in the index of each element, from 0 to length l - 1 as additional argument to the folded function f. Tail-recursive.
val foldi2 : ('c -> int -> 'a -> 'b -> 'c) -> 'c -> 'a t -> 'b t -> 'cfoldi2 f init l1 l2 folds on the two lists l1 and l2, with index of each element passed to the function f. Computes f(… (f init i_0 l1_0 l2_0) …) i_n l1_n l2_n .
when lists do not have the same length.
val get_at_idx : int -> 'a t -> 'a optionget_at_idx i l returns Some i-th element of the given list l or None if the list l is too short. If the index is negative, it will get element starting from the end of the list l.
val nth_opt : 'a t -> int -> 'a optionnth_opt l n returns Some n-th element of l. Safe version of nth.
if the int is negative.
val get_at_idx_exn : int -> 'a t -> 'aget_at_idx_exn i l gets the i-th element of l, or
if the index is invalid. The first element has index 0. If the index is negative, it will get element starting from the end of the list.
val set_at_idx : int -> 'a -> 'a t -> 'a tset_at_idx i x l replaces the i-th element with x (removes the old one), or does nothing if index is too high. If the index is negative, it will set element starting from the end of the list.
val insert_at_idx : int -> 'a -> 'a t -> 'a tinsert_at_idx i x l inserts x at i-th position, between the two existing elements. If the index is too high, append at the end of the list. If the index is negative, it will insert element starting from the end of the list.
val remove_at_idx : int -> 'a t -> 'a tremove_at_idx i l removes element at given index i. Does nothing if the index is too high. If the index is negative, it will remove element starting from the end of the list.
Those operations maintain the invariant that the list does not contain duplicates (if it already satisfies it).
val add_nodup : eq:('a -> 'a -> bool) -> 'a -> 'a t -> 'a tadd_nodup ~eq x set adds x to set if it was not already present. Linear time.
val remove_one : eq:('a -> 'a -> bool) -> 'a -> 'a t -> 'a tremove_one ~eq x set removes one occurrence of x from set. Linear time.
val mem : ?eq:('a -> 'a -> bool) -> 'a -> 'a t -> boolmem ?eq x l is true iff x is equal to an element of l. A comparator function eq can be provided. Linear time.
val subset : eq:('a -> 'a -> bool) -> 'a t -> 'a t -> boolsubset ~eq l1 l2 tests if all elements of the list l1 are contained in the list l2 by applying eq.
val uniq : eq:('a -> 'a -> bool) -> 'a t -> 'a tuniq ~eq l removes duplicates in l w.r.t the equality predicate eq. Complexity is quadratic in the length of the list, but the order of elements is preserved. If you wish for a faster de-duplication but do not care about the order, use sort_uniq.
val union : eq:('a -> 'a -> bool) -> 'a t -> 'a t -> 'a tunion ~eq l1 l2 is the union of the lists l1 and l2 w.r.t. the equality predicate eq. Complexity is product of length of inputs.
val inter : eq:('a -> 'a -> bool) -> 'a t -> 'a t -> 'a tinter ~eq l1 l2 is the intersection of the lists l1 and l2 w.r.t. the equality predicate eq. Complexity is product of length of inputs.
val range_by : step:int -> int -> int -> int trange_by ~step i j iterates on integers from i to j included, where the difference between successive elements is step. Use a negative step for a decreasing list.
if step=0.
val range : int -> int -> int trange i j iterates on integers from i to j included. It works both for decreasing and increasing ranges.
val range' : int -> int -> int trange' i j is like range but the second bound j is excluded. For instance range' 0 5 = [0;1;2;3;4].
val (--) : int -> int -> int ti -- j is the list of integers from i to j included. Infix alias for range.
val (--^) : int -> int -> int ti --^ j is the list of integers from i to j excluded. Infix alias for range'.
val replicate : int -> 'a -> 'a treplicate n x replicates the given element x n times.
val repeat : int -> 'a t -> 'a trepeat n l concatenates the list l with itself n times.
module Assoc : sig ... endval assoc : eq:('a -> 'a -> bool) -> 'a -> ('a * 'b) t -> 'bassoc ~eq k alist returns the value v associated with key k in alist. Like Assoc.get_exn.
val assoc_opt : eq:('a -> 'a -> bool) -> 'a -> ('a * 'b) t -> 'b optionassoc_opt ~eq k alist returns Some v if the given key k is present into alist, or None if not present. Like Assoc.get.
val assq_opt : 'a -> ('a * 'b) t -> 'b optionassq_opt k alist returns Some v if the given key k is present into alist. Like Assoc.assoc_opt but use physical equality instead of structural equality to compare keys. Safe version of assq.
val mem_assoc : ?eq:('a -> 'a -> bool) -> 'a -> ('a * _) t -> boolmem_assoc ?eq k alist returns true iff k is a key in alist. Like Assoc.mem.
val remove_assoc : eq:('a -> 'a -> bool) -> 'a -> ('a * 'b) t -> ('a * 'b) tremove_assoc ~eq k alist returns the alist without the first pair with key k, if any. Like Assoc.remove.
module Ref : sig ... endmodule type MONAD = sig ... endmodule Traverse : functor (M : MONAD) -> sig ... endval random : 'a random_gen -> 'a t random_genval random_non_empty : 'a random_gen -> 'a t random_genval random_len : int -> 'a random_gen -> 'a t random_genval random_choose : 'a t -> 'a random_genrandom_choose l randomly chooses an element in the list l.
if the list is empty.
val random_sequence : 'a random_gen t -> 'a t random_genval to_string : ?start:string -> ?stop:string -> ?sep:string -> ('a -> string) -> 'a t -> stringto_string ?start ?stop ?sep item_to_string l prints l to a string using sep as a separator between elements of l.
val to_iter : 'a t -> 'a iterto_iter l returns a iter of the elements of the list l.
val to_seq : 'a t -> 'a Stdlib.Seq.tto_seq l returns a Seq.t of the elements of the list l. Renamed from to_std_seq since 3.0.
val of_iter : 'a iter -> 'a tof_iter iter builds a list from a given iter. In the result, elements appear in the same order as they did in the source iter.
val of_seq_rev : 'a Stdlib.Seq.t -> 'a tof_seq_rev seq builds a list from a given Seq.t, in reverse order. Renamed from to_std_seq_rev since 3.0.
val of_seq : 'a Stdlib.Seq.t -> 'a tof_seq seq builds a list from a given Seq.t. In the result, elements appear in the same order as they did in the source Seq.t. Renamed from of_std_seq since 3.0.
val to_gen : 'a t -> 'a gento_gen l returns a gen of the elements of the list l.
val of_gen : 'a gen -> 'a tof_gen gen builds a list from a given gen. In the result, elements appear in the same order as they did in the source gen.
It is convenient to open CCList.Infix to access the infix operators without cluttering the scope too much.
module Infix : sig ... endLet operators on OCaml >= 4.08.0, nothing otherwise
val pp : ?pp_start:unit printer -> ?pp_stop:unit printer -> ?pp_sep:unit printer -> 'a printer -> 'a t printerpp ?pp_start ?pp_stop ?pp_sep ppf l prints the contents of a list.