Enhanced C#
Language of your choice: library documentation
Properties | Public Member Functions | List of all members
Loyc.Collections.IPop< out out T > Interface Template Reference

Represents a collection that produces a sequence of items, and can return the next item without popping it (the Peek operation). More...


Source file:

Remarks

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

TryPop (out bool isEmpty)
 
TryPeek (out bool isEmpty)