我有一个List和一个数组。我想通过偏移合并它们。
list = List([1, 2, 3, 4, 5]);
arr = [7, 8, 9];
// I expect some operation like this to make the list to be [1, 2, 7, 8, 9]:
list = list.merge(arr, 2)
我不知道如何处理它。我真的很感激。
答案 0 :(得分:1)
您要查找的是以下两种方法:
Collection.slice()
会在您的示例中将列表从0
切换为2
,从而有效抵消合并。List.concat()
将数组合并到列表中。然后你可以将它们链接在一起,就像这样产生所需的结果:
list = Immutable.List([1, 2, 3, 4, 5]);
arr = [7, 8, 9];
list = list.slice(0, 2).concat(arr);
console.log(list)

<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.2/immutable.min.js"></script>
&#13;