Node.opApply

Foreach over a mapping, getting each key/value as K/V.

If the K and/or V is Node, simply iterate over the nodes in the mapping. Otherwise, convert each key/value to T during iteration.

  1. int opApply(D dg)
  2. int opApply(D dg)
  3. int opApply(DG dg)
    struct Node
    int
    opApply
    (
    DG
    )
    (
    DG dg
    )
    if (
    isDelegate!DG &&
    (Parameters!DG.length == 2)
    )
  4. int opApply(DG dg)

Throws

NodeException if the node is not a mapping or an element could not be converted to specified type.

Meta