DictionaryList.opApply

Undocumented in source. Be warned that the author may not have intended to support it.
  1. int opApply(int delegate(KeyType key, ref ValueType val) nothrow del)
  2. int opApply(int delegate(const ref KeyType key, const ref ValueType val) nothrow del)
    struct DictionaryList(KEY, VALUE, ALLOC = ThreadMem, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 8)
    nothrow @trusted const
    int
    opApply
    (
    int delegate
    (
    const ref KeyType key
    ,
    const ref ValueType val
    )
    nothrow
    del
    )
  3. int opApply(int delegate(ref ValueType val) nothrow del)
  4. int opApply(int delegate(KeyType key, ref const(ValueType) val) del)
  5. int opApply(int delegate(ref const(ValueType) val) del)

Meta