Enhanced C#
Language of your choice: library documentation
|
Represents a collection that produces a sequence of items, and can return the next item without popping it (the Peek operation). More...
Represents a collection that produces a sequence of items, and can return the next item without popping it (the Peek operation).
Push/Pop methods that throw an exception on failure, and TryPush/TryPop methods that don't require a "ref" argument, are available as extension methods.
Properties | |
bool | IsEmpty [get] |
Public Member Functions | |
T | TryPop (out bool isEmpty) |
T | TryPeek (out bool isEmpty) |