Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 25 revisions

Copies part of iterable to another. 🏃 📼 📦 🌔 📒

Alternatives: copy, copyWithin.
Similar: copy, fill.


iterable.copy(x, y, [j], [i], [I]);
// x: target iterable
// y: source iterable
// j: write index (0)
// i: read start index (0)
// I: read end index (X)
const iterable = require("extra-iterable");

var x = [1, 2, 3, 4, 5];
var y = [10, 20, 30];
[...iterable.copy(x, y)];
// [ 10, 20, 30, 4, 5 ]

[...iterable.copy(x, y, 1)];
// [ 1, 10, 20, 30, 5 ]

[...iterable.copy(x, y, 1, 1)];
// [ 1, 20, 30, 4, 5 ]

[...iterable.copy(x, y, 1, 1, 2)];
// [ 1, 20, 3, 4, 5 ]


References

Clone this wiki locally