Skip to content

infixes

Subhajit Sahu edited this page Feb 2, 2021 · 23 revisions

Lists all possible infixes. 🏃 📼 📦 🌔 📒

Similar: infix, infixes, hasInfix, searchInfix.


array.infixes(x, [n]);
// x: an array
// n: number of values (-1 => any)
const array = require("extra-array");

[...array.infixes([1, 2])];
// [ [], [ 1 ], [ 1, 2 ], [ 2 ] ]

[...array.infixes([1, 2, 3])];
// [ [], [ 1 ], [ 1, 2 ], [ 1, 2, 3 ], [ 2 ], [ 2, 3 ], [ 3 ] ]


References

Clone this wiki locally