template<typename T, fsize I = 0>
Array class
Template parameters | |
---|---|
T | the type of element to store |
I | the size of the array as a constant expression |
Contents
Static array
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=(const Array<T, I>& arr) -> Array<T, I>&
- auto operator=(Array<T, I>&& arr) -> Array<T, I>& noexcept
- void Swap(const Iterator& a, const Iterator& b)
- auto Size() const -> fsize constexpr
- auto First() -> T&
- auto Last() -> T&
- auto First() const -> const T&
- auto Last() const -> const T&
- auto operator*() const -> const T*
- auto operator*() -> T*
- auto operator[](const fsize id) -> T&
- auto operator[](const fsize id) const -> const T&
- auto operator==(const Array<T, I>& other) -> bool
- auto operator!=(const Array<T, I>& 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 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
-
template<template<typename> class Comparator>auto FindByValue(const T& val) -> Array<T>::Iterator
Function documentation
template<typename T, fsize I>
T& bpf:: collection:: Array<T, I>:: operator[](const 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, fsize I>
const T& bpf:: collection:: Array<T, I>:: operator[](const 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, fsize I>
bool bpf:: collection:: Array<T, I>:: operator==(const Array<T, I>& 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, fsize I>
bool bpf:: collection:: Array<T, I>:: operator!=(const Array<T, I>& 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, fsize I>
template<template<typename> class Comparator = ops:: Equal>
Iterator bpf:: collection:: Array<T, I>:: 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, fsize I>
ReverseIterator bpf:: collection:: Array<T, I>:: rbegin()
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the array
template<typename T, fsize I>
ReverseIterator bpf:: collection:: Array<T, I>:: rend()
Returns | new iterator |
---|
Returns a reverse iterator to the end of the array
template<typename T, fsize I>
CReverseIterator bpf:: collection:: Array<T, I>:: rbegin() const
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the array
template<typename T, fsize I>
CReverseIterator bpf:: collection:: Array<T, I>:: rend() const
Returns | new iterator |
---|
Returns a reverse iterator to the end of the array
template<typename T, fsize I>
template<template<typename> class Comparator>
Array<T>::Iterator bpf:: collection:: Array<T, I>:: FindByValue(const T& val)