Method | Description | |
---|---|---|
AllButLast ( Action operation ) : void |
Hook an operation at every iteration of the loop except the last.
|
|
DoActions ( LoopIteration currentIteration ) : void |
Performs the actions for a given iteration, when available.
|
|
First ( Action operation ) : void |
Hook an operation the first iteration of the loop.
|
|
OperationHook ( List iterationList ) : System |
Create a new operation hook for a given loop.
|
public AllButLast ( Action operation ) : void | ||
operation | Action | The operation to be executed. |
return | void |
public DoActions ( LoopIteration currentIteration ) : void | ||
currentIteration | LoopIteration | The current iteration to do actions for. |
return | void |
public First ( Action operation ) : void | ||
operation | Action | The operation to be executed. |
return | void |
public OperationHook ( List iterationList ) : System | ||
iterationList | List | The list of iterations in which to hook. |
return | System |