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


erlang insert_element(Index, Tuple1, Term)用法及代碼示例


erlang:insert_element(Index, Tuple1, Term) -> Tuple2
OTP R16B
類型:
Index = integer() >= 1
1..tuple_size(元組1) + 1
Tuple1 = Tuple2 = tuple()
Term = term()

返回一個新元組,其中元素 Term 插入到元組 Tuple1 中的位置 Index 處。從位置 Index 開始的所有元素在新元組 Tuple2 中都被推高一級。例子:

> erlang:insert_element(2, {one, two, three}, new).
{one,new,two,three}

相關用法


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