Skip to content

iinfixes

Subhajit Sahu edited this page May 3, 2023 · 1 revision

List all possible infixes.

Alternatives: iinfixes, infixes.
Similar: randomInfix, infixes, hasInfix, searchInfix.


function iinfixes(x, n)
// x: an array
// n: number of values [-1 ⇒ any]
const xarray = require('extra-array');

[...xarray.iinfixes([1, 2])];
// → [ [], [ 1 ], [ 1, 2 ], [ 2 ] ]

[...xarray.iinfixes([1, 2, 3])];
// → [ [], [ 1 ], [ 1, 2 ], [ 1, 2, 3 ], [ 2 ], [ 2, 3 ], [ 3 ] ]


References

Clone this wiki locally