Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
a local clone.
dmd.apply
A depth-first visitor for expressions.
Authors:
License:
Source apply.d
Documentation https://dlang.org/phobos/dmd_apply.html
- int
apply
(FP, Params...)(Dsymbolsymbol
, FPfp
, Paramsparams
); - Iterate this dsymbol or members of this scoped dsymbol, then call
fp
with the found symbol andparams
.Parameters:Dsymbol symbol
the dsymbol or parent of members to call fp on FP fp
function pointer to process the iterated symbol. If it returns nonzero, the iteration will be aborted. Params params
any parameters passed to fp. Returns:nonzero if the iteration is aborted by the return value of fp, or 0 if it's completed.
Copyright © 1999-2022 by the D Language Foundation | Page generated by
Ddoc on (no date time)