Page History
...
SRP Stacks are simple data structures useful for nested or recursive operations.
| Method | Description |
|---|---|
| Clear | Removes all values from an SRP Stack. |
| Create | Creates an SRP Stack. |
| Count | Gets the number of elements in the stack. |
| Peek | Returns the value at the top of an SRP Stack without removing it. |
| Pop | Removes and returns the value at the top of an SRP Stack. |
| Push | Inserts a value at the top of an SRP Stack. |
| Release | Releases the handle to an SRP Stack. |
...