mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
clean(List): remove functions defined in Stdlib
This commit is contained in:
parent
4f0e219036
commit
0d9b4d910a
3 changed files with 0 additions and 10 deletions
|
|
@ -125,8 +125,6 @@ let map f l =
|
|||
|
||||
let direct_depth_append_ = 10_000
|
||||
|
||||
let cons x l = x::l
|
||||
|
||||
let append l1 l2 =
|
||||
let rec direct i l1 l2 = match l1 with
|
||||
| [] -> l2
|
||||
|
|
|
|||
|
|
@ -35,10 +35,6 @@ val (>|=) : 'a t -> ('a -> 'b) -> 'b t
|
|||
(** Infix version of [map] with reversed arguments.
|
||||
@since 0.5 *)
|
||||
|
||||
val cons : 'a -> 'a t -> 'a t
|
||||
(** [cons x l] is [x::l].
|
||||
@since 0.12 *)
|
||||
|
||||
val append : 'a t -> 'a t -> 'a t
|
||||
(** Safe version of {!List.append}.
|
||||
Concatenate two lists. *)
|
||||
|
|
|
|||
|
|
@ -35,10 +35,6 @@ val (>|=) : 'a t -> ('a -> 'b) -> 'b t
|
|||
(** Infix version of [map] with reversed arguments.
|
||||
@since 0.5 *)
|
||||
|
||||
val cons : 'a -> 'a t -> 'a t
|
||||
(** [cons x l] is [x::l].
|
||||
@since 0.12 *)
|
||||
|
||||
val append : 'a t -> 'a t -> 'a t
|
||||
(** Safe version of {!List.append}.
|
||||
Concatenate two lists. *)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue