當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang list_to_tuple(List)用法及代碼示例


list_to_tuple(List) -> tuple()
類型:
List = [term()]

返回對應於 List 的元組,例如

> list_to_tuple([share, ['Ericsson_B', 163]]).
{share, ['Ericsson_B', 163]}

List 可以包含任何 Erlang 術語。

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 list_to_tuple(List) -> tuple()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。