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)
    struct DictionaryList(KEY, VALUE, ALLOC = ThreadMem, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 8)
    const
    Vector!(ValueType, ALLOC)
    getValuesAt
    ()
    (
    auto const ref KeyType key
    )
  2. void getValuesAt(KeyType key, void delegate(const(ValueType)) del)

Meta