DictionaryList.get

Returns the first field that matches the given key.

If no field is found, def_val is returned.

  1. inout(ValueType) get(string key, inout(ValueType) def_val)
  2. inout(T) get(string key, inout(T) def_val)
    struct DictionaryList(VALUE, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 32, bool USE_HASHSUM = false)
    inout
    inout(T)
    get
    (
    T
    )
    (
    string key
    ,
    lazy inout(T) def_val
    )
    if (
    typedGet!T
    )
  3. inout(T) get(string key)

Meta