mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 03:05:29 -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)]
|
Same as [filter_map (fun x->x)]
|
||||||
@since 1.0 *)
|
@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].
|
(** [keep_ok l] retains only elements of the form [Ok x].
|
||||||
@since 1.0 *)
|
@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].
|
(** [keep_error l] retains only elements of the form [Error x].
|
||||||
@since 1.0 *)
|
@since 1.0 *)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -227,11 +227,11 @@ val keep_some : 'a option t -> 'a t
|
||||||
Same as [filter_map (fun x->x)]
|
Same as [filter_map (fun x->x)]
|
||||||
@since 1.0 *)
|
@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].
|
(** [keep_ok l] retains only elements of the form [Ok x].
|
||||||
@since 1.0 *)
|
@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].
|
(** [keep_error l] retains only elements of the form [Error x].
|
||||||
@since 1.0 *)
|
@since 1.0 *)
|
||||||
|
|
||||||
|
|
|
||||||
3
src/dune
3
src/dune
|
|
@ -4,8 +4,7 @@
|
||||||
(public_name iter)
|
(public_name iter)
|
||||||
(wrapped false)
|
(wrapped false)
|
||||||
(modules Iter IterLabels)
|
(modules Iter IterLabels)
|
||||||
(flags :standard -w +a -warn-error -a+8 -nolabels)
|
(flags :standard -w +a -warn-error -a+8 -nolabels))
|
||||||
(libraries bytes result seq))
|
|
||||||
|
|
||||||
(env
|
(env
|
||||||
(_
|
(_
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue