BiowareDB.getVariableValue

Search and return the value of a variable

Expected O(1).

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

Parameters

T

$(TYPE)

account string

$(ACCOUNT)

character string

$(CHARACTER)

varName string

$(VARNAME)

Return Value

Type: Nullable!(const(T))

the variable value, or null if not found

Meta