DictionaryList.getValuesAt

Returns all values matching the given key.

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

  1. Vector!(ValueType, ALLOC) getValuesAt(KeyType key)
  2. void getValuesAt(KeyType key, void delegate(const(ValueType)) del)
    struct DictionaryList(KEY, VALUE, ALLOC = ThreadMem, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 8)
    const
    void
    getValuesAt
    (,
    scope void delegate
    (
    const(ValueType)
    )
    del
    )

Meta