mirror of
https://github.com/c-cube/iter.git
synced 2025-12-05 19:00:31 -05:00
remove deps no longer needed
This commit is contained in:
parent
c4c2630b60
commit
37a160579a
3 changed files with 5 additions and 6 deletions
|
|
@ -259,11 +259,11 @@ val keep_some : 'a option t -> 'a t
|
|||
Same as [filter_map (fun x->x)]
|
||||
@since 1.0 *)
|
||||
|
||||
val keep_ok : ('a, _) Result.result t -> 'a t
|
||||
val keep_ok : ('a, _) result t -> 'a t
|
||||
(** [keep_ok l] retains only elements of the form [Ok x].
|
||||
@since 1.0 *)
|
||||
|
||||
val keep_error : (_, 'e) Result.result t -> 'e t
|
||||
val keep_error : (_, 'e) result t -> 'e t
|
||||
(** [keep_error l] retains only elements of the form [Error x].
|
||||
@since 1.0 *)
|
||||
|
||||
|
|
|
|||
|
|
@ -227,11 +227,11 @@ val keep_some : 'a option t -> 'a t
|
|||
Same as [filter_map (fun x->x)]
|
||||
@since 1.0 *)
|
||||
|
||||
val keep_ok : ('a, _) Result.result t -> 'a t
|
||||
val keep_ok : ('a, _) result t -> 'a t
|
||||
(** [keep_ok l] retains only elements of the form [Ok x].
|
||||
@since 1.0 *)
|
||||
|
||||
val keep_error : (_, 'e) Result.result t -> 'e t
|
||||
val keep_error : (_, 'e) result t -> 'e t
|
||||
(** [keep_error l] retains only elements of the form [Error x].
|
||||
@since 1.0 *)
|
||||
|
||||
|
|
|
|||
3
src/dune
3
src/dune
|
|
@ -4,8 +4,7 @@
|
|||
(public_name iter)
|
||||
(wrapped false)
|
||||
(modules Iter IterLabels)
|
||||
(flags :standard -w +a -warn-error -a+8 -nolabels)
|
||||
(libraries bytes result seq))
|
||||
(flags :standard -w +a -warn-error -a+8 -nolabels))
|
||||
|
||||
(env
|
||||
(_
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue