View source code
Display the source code in dmd/dsymbol.d from which this
page was generated on github.
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
local clone.
dmd.dsymbol.foreachDsymbol
- multiple declarations
Function foreachDsymbol
Calls dg(Dsymbol *sym) for each Dsymbol. If dg returns !=0, stops and returns that value else returns 0.
int foreachDsymbol
(
dmd .root .array .Array!(dmd.dsymbol.Dsymbol)* symbols,
scope int delegate(Dsymbol) dg
);
Parameters
Name | Description |
---|---|
symbols | Dsymbols |
dg | delegate to call for each Dsymbol |
Returns
last value returned by dg()
See Also
Function foreachDsymbol
Calls dg(Dsymbol *sym) for each Dsymbol.
void foreachDsymbol
(
dmd .root .array .Array!(dmd.dsymbol.Dsymbol)* symbols,
scope void delegate(Dsymbol) dg
);
Parameters
Name | Description |
---|---|
symbols | Dsymbols |
dg | delegate to call for each Dsymbol |
See Also
Authors
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.