-
Notifications
You must be signed in to change notification settings - Fork 5
suffixes
wolfram77 edited this page Apr 13, 2020
·
22 revisions
Lists all possible suffixes. [:running:] [:vhs:] [:package:] [:moon:]
array.suffixes(x, [n]);
// x: an array
// n: number of values (-1 => any)
// --> ...suffixes
const array = require('extra-array');
[...array.suffixes([1, 2])];
// [ [ 1, 2 ], [ 2 ], [] ]
[...array.suffixes([1, 2, 3])];
// [ [ 1, 2, 3 ], [ 2, 3 ], [ 3 ], [] ]