PydObject.opApply

Iterate over (key, value) pairs in a dictionary. If the PydObject is not a dict, this simply does nothing. (It iterates over no items.) You should not attempt to modify the dictionary while iterating through it, with the exception of modifying values. Adding or removing items while iterating through it is an especially bad idea.

  1. int opApply(int delegate(ref PydObject) dg)
  2. int opApply(int delegate(ref PydObject, ref PydObject) dg)
    class PydObject
    int
    opApply
    (
    int delegate() dg
    )

Meta