template<typename T>
Array<T, 0> class
Template parameters | |
---|---|
T | the type of element to store |
Contents
Dynamic array (array which size is defined dynamically at run-time)
Public types
- using Iterator = ArrayIterator<T>
- using CIterator = ArrayConstIterator<T>
- using ReverseIterator = ArrayReverseIterator<T>
- using CReverseIterator = ArrayConstReverseIterator<T>
Constructors, destructors, conversion operators
Public functions
- auto operator=(Array<T>&& arr) -> Array<T>& noexcept
- auto operator=(const Array<T>& arr) -> Array<T>&
- void Swap(const Iterator& a, const Iterator& b)
- auto operator[](fsize id) const -> const T&
- auto operator[](fsize id) -> T&
- void Resize(fsize newSize)
- auto operator==(const Array<T>& other) -> bool
- auto operator!=(const Array<T>& other) -> bool
- auto FindByKey(fsize pos) -> Iterator
-
template<template<typename> class Comparator = ops::auto FindByValue(const T& val) -> Iterator
Equal> - auto Find(const std::function<bool(const fsize pos, const T&val)>& comparator) -> Iterator
- auto First() -> T&
- auto Last() -> T&
- auto First() const -> const T&
- auto Last() const -> const T&
- auto Size() const -> fsize
- auto operator*() const -> const T*
- auto operator*() -> T*
- auto Release() -> T*
- auto begin() -> Iterator
- auto end() -> Iterator
- auto begin() const -> CIterator
- auto end() const -> CIterator
- auto rbegin() -> ReverseIterator
- auto rend() -> ReverseIterator
- auto rbegin() const -> CReverseIterator
- auto rend() const -> CReverseIterator
Function documentation
template<typename T>
bpf:: collection:: Array<T, 0><T>:: Array()
Constructs an empty array
template<typename T>
bpf:: collection:: Array<T, 0><T>:: Array(const std::initializer_list<T>& lst)
Parameters | |
---|---|
lst | the list of values to copy the values from |
Constructs an array from a list of values
template<typename T>
const T& bpf:: collection:: Array<T, 0><T>:: operator[](fsize id) const
Parameters | |
---|---|
id | the index of the element, in case of out of bounds, throws |
Returns | immutable item at index id |
Exceptions | |
IndexException | if id is out of bounds |
Returns an element const mode
template<typename T>
T& bpf:: collection:: Array<T, 0><T>:: operator[](fsize id)
Parameters | |
---|---|
id | the index of the element, in case of out of bounds, throws |
Returns | mutable item at index id |
Exceptions | |
IndexException | if id is out of bounds |
Returns an element non-const mode
template<typename T>
bool bpf:: collection:: Array<T, 0><T>:: operator==(const Array<T>& other)
Parameters | |
---|---|
other | Array to compare with |
Returns | true if the two arrays are equal, false otherwise |
Compare Array by performing a per-element check
template<typename T>
bool bpf:: collection:: Array<T, 0><T>:: operator!=(const Array<T>& other)
Parameters | |
---|---|
other | Array to compare with |
Returns | false if the two arrays are equal, true otherwise |
Compare Array by performing a per-element check
template<typename T>
template<template<typename> class Comparator = ops:: Equal>
Iterator bpf:: collection:: Array<T, 0><T>:: FindByValue(const T& val)
Template parameters | |
---|---|
Comparator | comparision operator to use |
Parameters | |
val | the value to search for |
Returns | iterator to the found item or end() if none |
Locate an item by performing per-element check
template<typename T>
T& bpf:: collection:: Array<T, 0><T>:: First()
Returns | mutable item |
---|---|
Exceptions | |
IndexException | if Array is not initialized |
Returns the first element in this Array
template<typename T>
T& bpf:: collection:: Array<T, 0><T>:: Last()
Returns | mutable item |
---|---|
Exceptions | |
IndexException | if Array is not initialized |
Returns the last element in this Array
template<typename T>
const T& bpf:: collection:: Array<T, 0><T>:: First() const
Returns | immutable item |
---|---|
Exceptions | |
IndexException | if array is not initialized |
Returns the first element in this array
template<typename T>
const T& bpf:: collection:: Array<T, 0><T>:: Last() const
Returns | immutable item |
---|---|
Exceptions | |
IndexException | if array is not initialized |
Returns the last element in this array
template<typename T>
const T* bpf:: collection:: Array<T, 0><T>:: operator*() const
Returns | low-level c-like arrray pointer |
---|
Returns an immutable low-level c-like arrray
template<typename T>
T* bpf:: collection:: Array<T, 0><T>:: operator*()
Returns | low-level c-like arrray pointer |
---|
Returns a mutable low-level c-like arrray
template<typename T>
T* bpf:: collection:: Array<T, 0><T>:: Release()
Returns | low-level c-like arrray pointer |
---|
Terminates management of the raw pointer and returns it WARNING: You are responsible for calling MemUtils::DeleteArray on the raw pointer after calling this function. Do not call this function unless you know what you're doing
template<typename T>
ReverseIterator bpf:: collection:: Array<T, 0><T>:: rbegin()
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the array
template<typename T>
ReverseIterator bpf:: collection:: Array<T, 0><T>:: rend()
Returns | new iterator |
---|
Returns a reverse iterator to the end of the array
template<typename T>
CReverseIterator bpf:: collection:: Array<T, 0><T>:: rbegin() const
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the array
template<typename T>
CReverseIterator bpf:: collection:: Array<T, 0><T>:: rend() const
Returns | new iterator |
---|
Returns a reverse iterator to the end of the array