abstract-list
TypeScript icon, indicating that this package has built-in type declarations

1.0.15 • Public • Published

abstract-list

npm version

Abstract list for working with arrays that aren't really arrays.

Usage

//   This is an abstract list
const arrayList: List<number> = [1, 2, 3];

//  This is also an abstract list
const aList: List<number> = {
  at(index) {
    return index;
  },
  length: Number.MAX_SAFE_INTEGER,
};

//  This is a giant list for which elem.at(x) === x^2
const squareList: List<number> = {
  at(index) {
    return index * index;
  },
  length: Number.MAX_SAFE_INTEGER,
};

In bun-engine, abstract lists are used to represent a large number sprites flexibly, without storing each sprite structure.

Install bun

https://bun.sh/

curl -fsSL https://bun.sh/install | bash

Package Sidebar

Install

npm i abstract-list

Weekly Downloads

9

Version

1.0.15

License

MIT

Unpacked Size

7.22 kB

Total Files

8

Last publish

Collaborators

  • vincentlequang