Name
calls to — Returns the set of all calls to methods in a set
Description
The transform returns all the calls to methods
in the set.
If you have two sets of methods, foo
and bar
,
and you want to identify all the places in foo
where bar is called, you might use:
( calls from foo ) intersection ( calls to bar )
.