template<typename T>
ArrayList class
Template parameters | |
---|---|
T | the type of element to store |
Contents
Simple array-list class, automatically doubles it's size
Public types
- using Iterator = typename Array<T>::Iterator
- using ReverseIterator = typename Array<T>::ReverseIterator
- using CIterator = typename Array<T>::CIterator
- using CReverseIterator = typename Array<T>::CReverseIterator
Constructors, destructors, conversion operators
Public functions
- auto operator=(const ArrayList<T>& other) -> ArrayList<T>&
- auto operator=(ArrayList<T>&& other) -> ArrayList<T>& noexcept
- auto operator==(const ArrayList<T>& other) const -> bool noexcept
- auto operator!=(const ArrayList<T>& other) const -> bool noexcept
- auto operator+(const ArrayList<T>& other) const -> ArrayList<T>
- void operator+=(const ArrayList<T>& other)
- auto operator+(const Array<T>& other) const -> ArrayList<T>
- void operator+=(const Array<T>& other)
- auto First() -> T&
- auto Last() -> T&
- auto First() const -> const T&
- auto Last() const -> const T&
- auto operator[](const fsize id) -> T&
- auto operator[](const fsize id) const -> const T&
- void Add(const T& elem)
- void Add(T&& elem)
- void Swap(const Iterator& a, const Iterator& b)
- void Insert(fsize pos, const T& elem)
- void Insert(fsize pos, T&& elem)
- void Insert(const Iterator& pos, const T& elem)
- void Insert(const Iterator& pos, T&& elem)
- void RemoveAt(fsize pos)
- void RemoveAt(Iterator& pos)
- void RemoveAt(Iterator&& pos)
-
template<template<typename> class Comparator = ops::void Remove(const T& elem, bool all = true)
Equal> - 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
- void Clear()
- void RemoveLast()
- auto Size() const -> fsize
- auto ToArray() const -> Array<T>
-
template<template<typename> class Comparator = ops::void Sort(bool stable = false)
Less> - auto begin() const -> CIterator
- auto end() const -> CIterator
- auto begin() -> Iterator
- auto end() -> Iterator
- auto rbegin() const -> CReverseIterator
- auto rend() const -> CReverseIterator
- auto rbegin() -> ReverseIterator
- auto rend() -> ReverseIterator
Function documentation
template<typename T>
bool bpf:: collection:: ArrayList<T>:: operator==(const ArrayList<T>& other) const noexcept
Parameters | |
---|---|
other | ArrayList to compare with |
Returns | true if the two lists are equal, false otherwise |
Compare ArrayList by performing a per-element check
template<typename T>
bool bpf:: collection:: ArrayList<T>:: operator!=(const ArrayList<T>& other) const noexcept
Parameters | |
---|---|
other | ArrayList to compare with |
Returns | false if the two lists are equal, true otherwise |
Compare ArrayList by performing a per-element check
template<typename T>
void bpf:: collection:: ArrayList<T>:: operator+=(const ArrayList<T>& other)
Parameters | |
---|---|
other | list to append |
Appends the content of a list at the end of this list
template<typename T>
void bpf:: collection:: ArrayList<T>:: operator+=(const Array<T>& other)
Parameters | |
---|---|
other | array to append |
Appends the content of an array at the end of this list
template<typename T>
T& bpf:: collection:: ArrayList<T>:: First()
Returns | mutable item |
---|---|
Exceptions | |
IndexException | if none |
Returns the first element in this ArrayList
template<typename T>
T& bpf:: collection:: ArrayList<T>:: Last()
Returns | mutable item |
---|---|
Exceptions | |
IndexException | if none |
Returns the last element in this ArrayList
template<typename T>
const T& bpf:: collection:: ArrayList<T>:: First() const
Returns | immutable item |
---|---|
Exceptions | |
IndexException | if none |
Returns the first element in this ArrayList
template<typename T>
const T& bpf:: collection:: ArrayList<T>:: Last() const
Returns | immutable item |
---|---|
Exceptions | |
IndexException | if none |
Returns the last element in this ArrayList
template<typename T>
T& bpf:: collection:: ArrayList<T>:: 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>
const T& bpf:: collection:: ArrayList<T>:: 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>
void bpf:: collection:: ArrayList<T>:: Add(const T& elem)
Parameters | |
---|---|
elem | the element to add |
Adds an item at the end of this list
template<typename T>
void bpf:: collection:: ArrayList<T>:: Add(T&& elem)
Parameters | |
---|---|
elem | the element to add |
Adds an item at the end of this list
template<typename T>
template<template<typename> class Comparator = ops:: Equal>
void bpf:: collection:: ArrayList<T>:: Remove(const T& elem,
bool all = true)
Template parameters | |
---|---|
Comparator | the comparision operator to use for comparing values |
Parameters | |
elem | the element to search for |
all | wether or not to remove all occurences or just the first one |
Removes occurences of an element fron the list
template<typename T>
template<template<typename> class Comparator = ops:: Equal>
Iterator bpf:: collection:: ArrayList<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>
void bpf:: collection:: ArrayList<T>:: RemoveLast()
Removes the last item in this list
template<typename T>
template<template<typename> class Comparator = ops:: Less>
void bpf:: collection:: ArrayList<T>:: Sort(bool stable = false)
Template parameters | |
---|---|
Comparator | comparision operator |
Parameters | |
stable | if true this function will apply a Merge-Sort algorithm, otherwise this function uses the Quick-Sort algorithm |
Sorts this collection in place
template<typename T>
CReverseIterator bpf:: collection:: ArrayList<T>:: rbegin() const
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the collection
template<typename T>
CReverseIterator bpf:: collection:: ArrayList<T>:: rend() const
Returns | new iterator |
---|
Returns a reverse iterator to the end of the collection
template<typename T>
ReverseIterator bpf:: collection:: ArrayList<T>:: rbegin()
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the collection
template<typename T>
ReverseIterator bpf:: collection:: ArrayList<T>:: rend()
Returns | new iterator |
---|
Returns a reverse iterator to the end of the collection