T - The type of objects to be added at the
back of the sequence.public interface IBackSequence<T>
| Modifier and Type | Method and Description |
|---|---|
T |
Back()
Gets the last element of the sequence.
|
void |
PopBack()
Removes the element at the back of the sequence.
|
void |
PushBack(T item)
Adds an element to the end of the sequence.
|
void |
SetBack(T value)
Sets the last element of the sequence.
|
void PushBack(T item)
item - The element added to the end of the sequence.void PopBack()
T Back()
void SetBack(T value)
value - The new value of the last element.Copyright© 2012 Progeneric Systems, Inc. All Rights Reserved.