|
| xiiDeque (xiiAllocatorBase *pAllocator) |
|
| xiiDeque (const xiiDeque< T, AllocatorWrapper, Construct > &other) |
|
| xiiDeque (const xiiDequeBase< T, Construct > &other) |
|
| xiiDeque (xiiDeque< T, AllocatorWrapper, Construct > &&other) |
|
| xiiDeque (xiiDequeBase< T, Construct > &&other) |
|
void | operator= (const xiiDeque< T, AllocatorWrapper, Construct > &rhs) |
|
void | operator= (const xiiDequeBase< T, Construct > &rhs) |
|
void | operator= (xiiDeque< T, AllocatorWrapper, Construct > &&rhs) |
|
void | operator= (xiiDequeBase< T, Construct > &&rhs) |
|
void | Clear () |
| Destructs all elements and sets the count to zero. Does not deallocate any data.
|
|
void | Reserve (xiiUInt32 uiCount) |
| Rearranges the internal data structures such that the amount of reserved elements can be appended with as few allocations, as possible.
|
|
void | Compact () |
| This function deallocates as much memory as possible to shrink the deque to the bare minimum size that it needs to work.
|
|
void | Swap (xiiDequeBase< T, Construct > &other) |
| swaps the contents of this deque with another one
|
|
void | SetCount (xiiUInt32 uiCount) |
| Sets the number of active elements in the deque. All new elements are default constructed. If the deque is shrunk, elements at the end of the deque are destructed.
|
|
void | SetCountUninitialized (xiiUInt32 uiCount) |
| \Same as SetCount(), but new elements do not get default constructed.
|
|
void | EnsureCount (xiiUInt32 uiCount) |
| Ensures the container has at least uiCount elements. Ie. calls SetCount() if the container has fewer elements, does nothing otherwise.
|
|
T & | operator[] (xiiUInt32 uiIndex) |
| Accesses the n-th element in the deque.
|
|
const T & | operator[] (xiiUInt32 uiIndex) const |
| Accesses the n-th element in the deque.
|
|
T & | ExpandAndGetRef () |
| Grows the deque by one element and returns a reference to the newly created element.
|
|
void | PushBack () |
| Adds one default constructed element to the back of the deque.
|
|
void | PushBack (const T &element) |
| Adds one element to the back of the deque.
|
|
void | PushBack (T &&value) |
| Adds one element at the end of the deque.
|
|
void | PopBack (xiiUInt32 uiElements=1) |
| Removes the last element from the deque.
|
|
void | PushFront (const T &element) |
| Adds one element to the front of the deque.
|
|
void | PushFront (T &&element) |
| Adds one element to the front of the deque.
|
|
void | PushFront () |
| Adds one default constructed element to the front of the deque.
|
|
void | PopFront (xiiUInt32 uiElements=1) |
| Removes the first element from the deque.
|
|
bool | IsEmpty () const |
| Checks whether no elements are active in the deque.
|
|
xiiUInt32 | GetCount () const |
| Returns the number of active elements in the deque.
|
|
const T & | PeekFront () const |
| Returns the first element.
|
|
T & | PeekFront () |
| Returns the first element.
|
|
const T & | PeekBack () const |
| Returns the last element.
|
|
T & | PeekBack () |
| Returns the last element.
|
|
bool | Contains (const T &value) const |
| Checks whether there is any element in the deque with the given value.
|
|
xiiUInt32 | IndexOf (const T &value, xiiUInt32 uiStartIndex=0) const |
| Returns the first index at which an element with the given value could be found or xiiInvalidIndex if nothing was found.
|
|
xiiUInt32 | LastIndexOf (const T &value, xiiUInt32 uiStartIndex=xiiInvalidIndex) const |
| Returns the last index at which an element with the given value could be found or xiiInvalidIndex if nothing was found.
|
|
void | RemoveAtAndSwap (xiiUInt32 uiIndex) |
| Removes the element at the given index and fills the gap with the last element in the deque.
|
|
void | RemoveAtAndCopy (xiiUInt32 uiIndex) |
| Removes the element at index and fills the gap by shifting all following elements.
|
|
bool | RemoveAndCopy (const T &value) |
| Removes the first occurrence of value and fills the gap by shifting all following elements.
|
|
bool | RemoveAndSwap (const T &value) |
| Removes the first occurrence of value and fills the gap with the last element in the deque.
|
|
void | InsertAt (xiiUInt32 uiIndex, const T &value) |
| Inserts value at index by shifting all following elements. Valid insert positions are [0; GetCount].
|
|
void | Sort (const Comparer &comparer) |
| Sort with explicit comparer.
|
|
void | Sort () |
| Sort with default comparer.
|
|
xiiAllocatorBase * | GetAllocator () const |
| Returns the allocator that is used by this instance.
|
|
xiiUInt32 | GetContiguousRange (xiiUInt32 uiStartIndex) const |
| Returns the number of elements after uiStartIndex that are stored in contiguous memory.
|
|
bool | operator== (const xiiDequeBase< T, Construct > &rhs) const |
| Comparison operator.
|
|
xiiUInt64 | GetHeapMemoryUsage () const |
| Returns the amount of bytes that are currently allocated on the heap.
|
|
template<typename T, typename AllocatorWrapper = xiiDefaultAllocatorWrapper, bool Construct = true>
class xiiDeque< T, AllocatorWrapper, Construct >
- See also
- xiiDequeBase