Options
All
  • Public
  • Public/Protected
  • All
Menu

Class MultiArrayIterator<ArrayElementType>

The purpose of this class is to allow iteration over elements of several independent arrays, where the elements are of the same or similar (e.g., equal base class) type. While the iteration is consecutive, the arrays are not merged in fact, avoiding possibly expensive memory allocations.

Type parameters

  • ArrayElementType

Hierarchy

  • MultiArrayIterator

Implements

  • Iterable<ArrayElementType>

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Properties

Private _arrays

_arrays: ArrayElementType[][]

Accessors

length

  • get length(): number

Methods

[Symbol.iterator]

  • [Symbol.iterator](): { next: any }

find

  • find(callback: (a: ArrayElementType) => boolean): ArrayElementType | undefined

forEach

  • forEach(callback: (a: ArrayElementType) => void): void

get

  • get(index: number): ArrayElementType | undefined

some

  • some(callback: (a: ArrayElementType) => boolean): boolean

Generated using TypeDoc