A first-in-first-out container of elements implemented as a List .
Putting an element to the end of the queue takes amortized constant time. Getting an element from the start of the queue is O(n) operation.
T |
public inline nothrow void | Clear() |
public inline nothrow long | Count() const |
public inline nothrow const T& | Front() const |
public inline T | Get() |
public inline nothrow bool | IsEmpty() const |
public inline void | Put(T&& item) |
public inline void | Put(const T& item) |
public inline nothrow List<T>& | Rep() |
public typedef ValueType | T |
private List<T> | items |