Skip to content

infixes

wolfram77 edited this page Apr 11, 2020 · 23 revisions

Lists all possible infixes. [:running:] [:package:] [:moon:]

array.infixes(x, [n]);
// x: an array
// n: number of values (-1 => any)
// --> ...infixes
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