How to use the iter-tools/es5/range function in iter-tools

To help you get started, we’ve selected a few iter-tools examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github conartist6 / sequins / src / statics / index.js View on Github external
Range(start = 0, end = Infinity, step = 1) {
    return new IndexedSeq(range({ start, step, end }));
  },
};
github conartist6 / sequins / src / statics / range.js View on Github external
export default function Range(start = 0, end = Infinity, step = 1) {
  return new IndexedSeq(range({ start, step, end }));
}
github conartist6 / sequins / src / subtypes / concrete / list.js View on Github external
keys() {
    return new Collection.Sequence.Duplicated(range(this.__native.length));
  }