BiowareDB.getVariableValue

Get the variable value at index Note: Can be used to retrieve deleted variable values.

  1. const(T) getVariableValue(size_t index)
    class BiowareDB
    const
    const(T)
    getVariableValue
    (
    T
    )
    (
    size_t index
    )
    if (
    is(T == NWInt) ||
    is(T == NWFloat)
    ||
    is(T == NWString)
    ||
    is(T == NWVector)
    ||
    is(T == NWLocation)
    ||
    )
  2. Nullable!(const(T)) getVariableValue(PCID pcid, string varName)
  3. Nullable!(const(T)) getVariableValue(string account, string character, string varName)

Parameters

T

$(TYPE)

index size_t

$(INDEX)

Return Value

Type: const(T)

the variable value

Throws

BiowareDBException if stored type != requested type

Meta