T - The type of objects to be added at the beginning
of the sequence.public interface IFrontSequence<T>
| Modifier and Type | Method and Description |
|---|---|
T |
Front()
Gets the first element of the sequence.
|
void |
PopFront()
Removes the element at the beginning of the sequence.
|
void |
PushFront(T item)
Adds an element to the beginning of the sequence.
|
void |
SetFront(T value)
Sets the first element of the sequence.
|
void PushFront(T item)
item - The element added to the beginning of the sequence.void PopFront()
T Front()
void SetFront(T value)
value - The new value of the first element.Copyright© 2012 Progeneric Systems, Inc. All Rights Reserved.