TupleDeclaration.foreachVar

Calls dg(Dsymbol) for each Dsymbol, which should be a VarDeclaration inside VarExp (isexp == true).

  1. void foreachVar(void delegate(Dsymbol) dg)
    class TupleDeclaration
    extern (D)
    void
    foreachVar
    (
    scope void delegate dg
    )
  2. int foreachVar(int delegate(Dsymbol) dg)

Parameters

dg void delegate

delegate to call for each Dsymbol

Meta