gpt4 book ai didi

elixir - 如何通过管道输入单个数字以获取列表?

转载 作者:行者123 更新时间:2023-12-04 23:40:35 24 4
gpt4 key购买 nike

我有一个单一的元素/数字,我要通过管道传送到 Enum.into([])但 Elixir 抛出 ** (Protocol.UndefinedError) protocol Enumerable not implemented for 90

90 |> Enum.into([])

v = 65
v |> Enum.into([]) Enumerable not implemented for 65

最佳答案

Enum.into/2期望 Enumerable 作为第一个参数,因此错误。

要将单个元素通过管道传输到列表中,请使用 List.wrap

65 |> List.wrap

关于elixir - 如何通过管道输入单个数字以获取列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38700080/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com