mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
fix(CCSeq): add implementation of concat_map
This commit is contained in:
parent
b2ec88b0e1
commit
399cd6d570
1 changed files with 1 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ and _flat_map_app f l l' () =
|
|||
| Nil -> flat_map f l' ()
|
||||
| Cons (x, tl) -> Cons (x, _flat_map_app f tl l')
|
||||
|
||||
let concat = flat_map
|
||||
let concat_map = flat_map
|
||||
|
||||
let product_with f l1 l2 =
|
||||
let rec _next_left h1 tl1 h2 tl2 () =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue