Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Iter.map_while #43

Merged
merged 2 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions iter.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ depends: [
"ounit2" {with-test}
"mdx" {with-test & >= "1.3" }
"odoc" {with-doc}
"containers" {with-test}
]
tags: [ "iter" "iterator" "iter" "fold" ]
homepage: "https://github.com/c-cube/iter/"
Expand Down
10 changes: 10 additions & 0 deletions src/Iter.ml
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,16 @@ let take_while p seq k =

exception ExitFoldWhile

let map_while f seq k =
let exception ExitMapWhile in
let consume x =
match f x with
| `Yield y -> k y
| `Return y -> k y; raise_notrace ExitMapWhile
| `Stop -> raise_notrace ExitMapWhile
in
try seq consume with ExitMapWhile -> ()

let fold_while f s seq =
let state = ref s in
let consume x =
Expand Down
11 changes: 11 additions & 0 deletions src/Iter.mli
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,17 @@ val take_while : ('a -> bool) -> 'a t -> 'a t
Will work on an infinite iterator [s] if the predicate is false for at
least one element of [s]. *)

val map_while : ('a -> [ `Yield of 'b | `Return of 'b | `Stop ]) -> 'a t -> 'b t
(** Maps over elements of the iterator, stopping early if the mapped function
returns [`Stop] or [`Return x]. At each iteration:
{ul
{- If [f] returns [`Yield y], [y] is added to the sequence and the
iteration continues.}
{- If [f] returns [`Stop], nothing is added to the sequence and the
iteration stops.}
{- If [f] returns [`Return y], [y] is added to the sequence and the
iteration stops.}} *)

val fold_while : ('a -> 'b -> 'a * [ `Stop | `Continue ]) -> 'a -> 'b t -> 'a
(** Folds over elements of the iterator, stopping early if the accumulator
returns [('a, `Stop)]
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

(tests
(names t_iter)
(libraries iter qcheck-core qcheck-core.runner ounit2))
(libraries iter qcheck-core qcheck-core.runner ounit2 containers))
16 changes: 16 additions & 0 deletions tests/unit/t_iter.ml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,22 @@ let () =
OUnit.assert_equal 2 n;
()

let () =
OUnit.assert_equal
~cmp:(CCList.equal Int.equal)
(1 -- 10
|> map_while (fun x -> if x = 7 then `Return (x + 1) else `Yield (x - 1))
|> to_list)
[0; 1; 2; 3; 4; 5; 8]

let () =
OUnit.assert_equal
~cmp:(CCList.equal Int.equal)
(1 -- 10
|> map_while (fun x -> if x = 7 then `Stop else `Yield (x - 1))
|> to_list)
[0; 1; 2; 3; 4; 5]

let () = 1 -- 5 |> drop 2 |> to_list |> OUnit.assert_equal [ 3; 4; 5 ]
let () = 1 -- 5 |> rev |> to_list |> OUnit.assert_equal [ 5; 4; 3; 2; 1 ]

Expand Down
Loading