|
template<typename T , std::size_t LhsSize, std::size_t RhsSize> |
constexpr auto | playrho::operator!= (const ArrayList< T, LhsSize > &lhs, const ArrayList< T, RhsSize > &rhs) noexcept |
| Inequality operator support.
|
|
template<typename T , std::size_t S> |
constexpr ArrayList< T, S > & | playrho::operator+= (ArrayList< T, S > &lhs, T rhs) |
| Appends the given value onto back. More...
|
|
template<typename T , std::size_t S, class U > |
constexpr auto | playrho::operator+= (ArrayList< T, S > &lhs, U &&rhs) -> decltype(rhs.begin(), rhs.end(), rhs.size(), lhs) |
| Appends the given values onto back. More...
|
|
template<typename T , std::size_t LhsSize, std::size_t RhsSize> |
constexpr auto | playrho::operator== (const ArrayList< T, LhsSize > &lhs, const ArrayList< T, RhsSize > &rhs) noexcept |
| Equality operator support.
|
|
Definition of the ArrayList
class and closely related functions.