mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
clean(Set): remove functions defined in Stdlib
This commit is contained in:
parent
71a3ebdeb5
commit
baec1f466e
2 changed files with 0 additions and 10 deletions
|
|
@ -77,10 +77,6 @@ module type S = sig
|
|||
@deprecated use {!to_iter} instead. *)
|
||||
[@@ocaml.deprecated "use to_iter instead"]
|
||||
|
||||
val of_list : elt list -> t
|
||||
(** Build a set from the given list of elements,
|
||||
added in order using {!add}. *)
|
||||
|
||||
val add_list : t -> elt list -> t
|
||||
(** @since 0.14 *)
|
||||
|
||||
|
|
@ -176,8 +172,6 @@ module Make(O : Map.OrderedType) = struct
|
|||
|
||||
let add_list = List.fold_left (fun set x -> add x set)
|
||||
|
||||
let of_list l = add_list empty l
|
||||
|
||||
let to_list = elements
|
||||
|
||||
let to_string ?(start="") ?(stop="") ?(sep=",") elt_to_string h =
|
||||
|
|
|
|||
|
|
@ -80,10 +80,6 @@ module type S = sig
|
|||
@deprecated use {!to_iter} instead. *)
|
||||
[@@ocaml.deprecated "use to_iter instead"]
|
||||
|
||||
val of_list : elt list -> t
|
||||
(** Build a set from the given list of elements,
|
||||
added in order using {!add}. *)
|
||||
|
||||
val add_list : t -> elt list -> t
|
||||
(** @since 0.14 *)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue