This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

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

0.4.0 • Public • Published

JSDSL - Abstract List

An abstraction of the list data structure.

Find @jsdsl/abstract-list on NPM.

Table of Contents

Installation

Install from NPM with

$ npm install --save @jsdsl/abstract-list

Basic Usage

The abstract class included in this package serves as a standardizing basis for a handful of other packages that implement list and list-like data structures, and is therefore not intended to be used alone.

Please refer to the documentation of the package implementing this package's abstract class for (hopefully) more useful information.

Documentation

#add

Adds an element to this list.

Parameters:

  • element The element to add to this list.

Returns Void.

public abstract add(element: E): void;

#addAll

Adds multiple elements to this list.

Parameters:

  • elements The elements to add to this list.

Returns Void.

public addAll(elements: E[]): void { ... }

#get

Returns the element at the specified index, or undefined if the index was out-of-bounds.

Parameters:

  • index The index from which to retrieve an element.

Returns The element at the specified index, or undefined if the index was out-of-bounds.

public abstract get(index: number): E | undefined;

#remove

Removes the specified element from this list.

Parameters:

  • elements The element to remove from this list.

Returns Void.

public abstract remove(element: E): void;

#size

Returns the number of elements contained in this list.

Parameters:

  • None

Returns The number of elements contained in this list.

public abstract size(): number;

#contains

Returns true if the provided element is contained in this list.

Parameters:

  • elements The element to check this list for.

Returns true if the provided element is contained in this list.

public abstract contains(element: E): boolean;

#isEmpty

Returns true if this list contains no elements.

Parameters:

  • None

Returns true if this list contains no elements.

See AbstractList#size

public isEmpty(): boolean { ... }

#clear

Removes all elements from this list, rendering the list empty.

Parameters:

  • None

Returns Void.

public abstract clear(): void;

#iterator

Returns an iterator over the elements of this list.

Parameters:

  • None

Returns An iterator over the elements of this list.

See IIterator

public abstract iterator(): IIterator<E>;

#toArray

Returns this list represented as an array of its elements.

Parameters:

  • None

Returns This list represented as an array of its elements.

public abstract toArray(): E[];

License

@jsdsl/abstract-list is made available under the GNU General Public License v3.

Copyright (C) 2019 Trevor Sears

Package Sidebar

Install

npm i @jsdsl/abstract-list

Weekly Downloads

0

Version

0.4.0

License

GPL-3.0-or-later

Unpacked Size

46.4 kB

Total Files

11

Last publish

Collaborators

  • t99