DictionaryList.getAll

Returns all values matching the given key.

Note that the version returning an array will allocate for each call.

  1. const(ValueType)[] getAll(string key)
  2. void getAll(string key, void delegate(const(ValueType)) del)
    struct DictionaryList(VALUE, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 32)
    const
    void
    getAll
    (
    string key
    ,
    scope void delegate
    (
    const(ValueType)
    )
    del
    )

Meta