Adds an action which will act on a copy of the root collection.
(Action<? super C> action)
| 53 | |
| 54 | /** Adds an action which will act on a copy of the root collection. */ |
| 55 | public void addLazyAction(Action<? super C> action) { |
| 56 | actions.add(action); |
| 57 | } |
| 58 | |
| 59 | /** Returns the final result. */ |
| 60 | public C getResult() { |