From 13f509674bb65d411c268f17b50cd1a6dd610d9e Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Mon, 18 Dec 2023 15:00:35 -0700 Subject: [PATCH] add OCaml `combine` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4508bd8..82e1687 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ See the [November 2023 presentation to committee](https://docs.google.com/presen | Clojure | variadic `map` | | | | yes | yes | yes | | | Elm | | | | | `List.map2` | yes | yes | | | Haskell | `zip` | | | | `zipWith` | yes | | | -| OCaml | `zip` | | | | `map2` | | yes | | +| OCaml | `zip` | | | `combine` | `map2` | | yes | | | Python | `zip` | `itertools.zip_longest` | | `zip(..., strict=True)` | | yes | yes | yes, empty | | Ruby | | | `Enumerable#zip` | | `zip` | yes | yes | | | Rust | `Iterator::zip` | | | | | | | |