DictionaryList.opApply

Iterates over all fields, including duplicates.

  1. int opApply(int delegate(KeyType key, ref ValueType val) del)
    struct DictionaryList(KEY, VALUE, ALLOC = ThreadMem, bool case_sensitive = true, size_t NUM_STATIC_FIELDS = 8)
    int
    opApply
    (
    int delegate del
    )
  2. int opApply(int delegate(const ref KeyType key, const ref ValueType val) del)
  3. int opApply(int delegate(ref ValueType val) del)
  4. int opApply(int delegate(KeyType key, ref const(ValueType) val) del)
  5. int opApply(int delegate(ref const(ValueType) val) del)

Meta