Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SRP Stacks are simple data structures useful for nested or recursive operations.

MethodDescription
ClearRemoves all values from an SRP Stack.
CreateCreates an SRP Stack.
CountGets 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.

ReleaseReleases the handle to an SRP Stack.

...