Returns the final result.
()
| 58 | |
| 59 | /** Returns the final result. */ |
| 60 | public C getResult() { |
| 61 | C copied = copier.apply(root); |
| 62 | actions.forEach(action -> action.execute(copied)); |
| 63 | return copied; |
| 64 | } |
| 65 | |
| 66 | /** Returns a Lazyable wrapper around a list. */ |
| 67 | @SuppressWarnings("unchecked") |