Go to the first, previous, next, last section, table of contents.


Function Iterators

FOREACH_FUN(f)
iterate (forward) over all FUNs
FOREACH_LIVE_FUN(f)
iterate (forward) over all not killed FUNs
FOREACH_LIVE_FUN_R(f)
iterate (backward) over all not killed FUNs. Iterating backwards often prevent infinite loops when new object are allocated during the iteration.


Go to the first, previous, next, last section, table of contents.