Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ChainStore

Chain store

Hierarchy

Indexable

[k: string]: any

Chain store

Index

Constructors

constructor

Properties

_fields

_fields: StoreField[]

chainid

chainid: Uint8Array

chainname

chainname: Uint8Array

count

count: number

entityIndex

entityIndex: Uint16Array

length

length: number

modelIndex

modelIndex: Uint16Array

residueCount

residueCount: Uint32Array

residueOffset

residueOffset: Uint32Array

Accessors

_defaultFields

estimatedSizeInBytes

  • get estimatedSizeInBytes(): number

Methods

_init

  • _init(size: number): void

_initField

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

getChainid

  • getChainid(i: number): string

getChainname

  • getChainname(i: number): string

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

setChainid

  • setChainid(i: number, str: string): void

setChainname

  • setChainname(i: number, str: string): 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