作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Elixir 将两个列表合并为一个元组列表的方法是什么?
list1 = [1, 2, 3, 4]
list2 = [5, 6, 7, 8]
# List of tuples from 'list1' and 'list2':
result = [{1,5}, {2,6}, {3,7}, {4,8}]
result
的每个成员都是一个元组,第一个成员来自list1
,第二个成员来自list2
。
最佳答案
您可以使用 Enum.zip/2
执行此操作:
Zips corresponding elements from a finite collection of enumerables into one list of tuples.
Enum.zip([[1, 2, 3], [:a, :b, :c], ["foo", "bar", "baz"]])
# [{1, :a, "foo"}, {2, :b, "bar"}, {3, :c, "baz"}]
Enum.zip([[1, 2, 3, 4, 5], [:a, :b, :c]])
# [{1, :a}, {2, :b}, {3, :c}]
关于list - 如何将列表合并到 Elixir 中的元组列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65333109/
我是一名优秀的程序员,十分优秀!