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)
    struct DictionaryList(VALUE, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 32, bool USE_HASHSUM = false)
    inout
    inout(ValueType)
    get
    (
    string key
    ,)
  2. inout(T) get(string key, inout(T) def_val)
  3. inout(T) get(string key)

Meta