erlang:insert_element/3
向元组插入一个元素
用法:
insert_element(Index, Tuple1, Term) -> Tuple2
在元组 Tuple1 的第 Index 个位置插入一个元素 Term,并返回一个新的元组 Tuple2。在新返回的元组 Tuple2 里,第 Index 位置后面的所有元组的索引值都会增加一位。
erlang:insert_element(2, {one, two, three}, new).
向元组插入一个元素
用法:
insert_element(Index, Tuple1, Term) -> Tuple2
在元组 Tuple1 的第 Index 个位置插入一个元素 Term,并返回一个新的元组 Tuple2。在新返回的元组 Tuple2 里,第 Index 位置后面的所有元组的索引值都会增加一位。
erlang:insert_element(2, {one, two, three}, new).