Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ContactStore

Bond store

Hierarchy

Indexable

[k: string]: any

Bond store

Index

Constructors

constructor

Properties

_fields

_fields: StoreField[]

count

count: number

index1

index1: Uint32Array

index2

index2: Uint32Array

length

length: number

type

type: Uint8Array

Accessors

_defaultFields

estimatedSizeInBytes

  • get estimatedSizeInBytes(): number

Methods

_init

  • _init(size: number): void

_initField

addContact

  • addContact(index1: number, index2: number, type?: undefined | number): 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