Skip to content

Commit d2276d8

Browse files
authored
Document zip/2 functions to create keyword lists (#13356)
1 parent 80eef8c commit d2276d8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

lib/elixir/lib/enum.ex

+7
Original file line numberDiff line numberDiff line change
@@ -3889,13 +3889,20 @@ defmodule Enum do
38893889
Zips corresponding elements from two enumerables into a list
38903890
of tuples.
38913891
3892+
Because a list of two-element tuples with atoms as the first
3893+
tuple element is a keyword list (`Keyword`), zipping a first list
3894+
of atoms with a second list of any kind creates a keyword list.
3895+
38923896
The zipping finishes as soon as either enumerable completes.
38933897
38943898
## Examples
38953899
38963900
iex> Enum.zip([1, 2, 3], [:a, :b, :c])
38973901
[{1, :a}, {2, :b}, {3, :c}]
38983902
3903+
iex> Enum.zip([:a, :b, :c], [1, 2, 3])
3904+
[a: 1, b: 2, c: 3]
3905+
38993906
iex> Enum.zip([1, 2, 3, 4, 5], [:a, :b, :c])
39003907
[{1, :a}, {2, :b}, {3, :c}]
39013908

lib/elixir/lib/stream.ex

+7
Original file line numberDiff line numberDiff line change
@@ -1200,6 +1200,11 @@ defmodule Stream do
12001200
@doc """
12011201
Zips two enumerables together, lazily.
12021202
1203+
Because a list of two-element tuples with atoms as the first
1204+
tuple element is a keyword list (`Keyword`), zipping a first `Stream`
1205+
of atoms with a second `Stream` of any kind creates a `Stream`
1206+
that generates a keyword list.
1207+
12031208
The zipping finishes as soon as either enumerable completes.
12041209
12051210
## Examples
@@ -1208,6 +1213,8 @@ defmodule Stream do
12081213
iex> cycle = Stream.cycle([:a, :b, :c])
12091214
iex> Stream.zip(concat, cycle) |> Enum.to_list()
12101215
[{1, :a}, {2, :b}, {3, :c}, {4, :a}, {5, :b}, {6, :c}]
1216+
iex> Stream.zip(cycle, concat) |> Enum.to_list()
1217+
[a: 1, b: 2, c: 3, a: 4, b: 5, c: 6]
12111218
12121219
"""
12131220
@spec zip(Enumerable.t(), Enumerable.t()) :: Enumerable.t()

0 commit comments

Comments
 (0)