Erlang - tuple_to_list



此方法可将元组转换为列表。

语法

tuple_to_list(list)

参数

  • 元组 - 需要转换为列表的元组。

返回值

根据提供的元组返回列表。

例如

-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~w",[tuple_to_list({1,2,3})]).

输出

上述程序的输出如下

[1,2,3]
erlang_tuples.htm
广告