Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Store

Store base class

interface

Hierarchy

Indexable

[k: string]: any

Store base class

interface

Index

Constructors

constructor

  • new Store(size?: number): Store

Properties

_fields

_fields: StoreField[]

count

count: number

length

length: number

Accessors

_defaultFields

estimatedSizeInBytes

  • get estimatedSizeInBytes(): number

Methods

_init

  • _init(size: number): void

_initField

  • Initialize a field

    Parameters

    • name: string

      field name

    • size: number

      element size

    • type: TypedArrayString

      data type, one of int8, int16, int32, uint8, uint16, uint32, float32

    Returns void

addField

appendRecords

  • appendRecords(addedCount: number, newValRec?: undefined | {}): void

clear

  • clear(): void

copyFrom

  • copyFrom(other: Store, thisOffset: number, otherOffset: number, length: number): void
  • Copy data from one store to another

    Parameters

    • other: Store

      store to copy from

    • thisOffset: number

      offset to start copying to

    • otherOffset: number

      offset to start copying from

    • length: number

      number of entries to copy

    Returns void

copyWithin

  • copyWithin(destinationOffset: number, sourceOffset: number, length: number): void
  • Copy data within this store

    Parameters

    • destinationOffset: number

      offset to start copying to

    • sourceOffset: number

      offset to start copying from

    • length: number

      number of entries to copy

    Returns void

dispose

  • dispose(): void

growIfFull

  • growIfFull(): void

insertRecords

  • insertRecords(index: number, addedCount: number, newValRec?: undefined | {}): void
  • Allows to add values to the store fields simultaneously. It is expected that all of the fields provided by the store will have their value defined in the newly added record and all the arrays with values are of the same length.

    Parameters

    • index: number

      index where the data should be inserted

    • addedCount: number
    • Optional newValRec: undefined | {}

      defines the values to add; if not provided, the store will be resized but no values will be overriden

      Catana extension.

    Returns void

prependRecords

  • prependRecords(addedCount: number, newValRec?: undefined | {}): void

removeRecord

  • removeRecord(index: number): void

resize

  • resize(size?: undefined | number): void

rotate

  • rotate(shift: number): void
  • Left-rotates the array with the given shift in the desired direction In-situ algorithm

    Catana extension

    Parameters

    • shift: number

    Returns void

shrinkToFit

  • shrinkToFit(): void

sort

  • sort(compareFunction: (a: any, b: any) => number): void
  • Sort entries in the store given the compare function

    Parameters

    • compareFunction: (a: any, b: any) => number

      function to sort by

        • (a: any, b: any): number
        • Parameters

          • a: any
          • b: any

          Returns number

    Returns void

Generated using TypeDoc