|
|
constexpr | sarr_ext_soa (core::zero_t) noexcept |
| |
|
constexpr | sarr_ext_soa (size_type count, const_reference value) noexcept |
| |
|
constexpr | sarr_ext_soa (size_type count) noexcept |
| |
|
template<typename InputIt > |
| constexpr | sarr_ext_soa (InputIt first, InputIt last) noexcept |
| |
|
constexpr | sarr_ext_soa (std::initializer_list< T > il) |
| |
|
constexpr | sarr_ext_soa (const sarr_ext_soa &other) |
| |
|
constexpr | sarr_ext_soa (sarr_ext_soa &&other) noexcept |
| |
|
sarr_ext_soa & | operator= (std::initializer_list< T > il) |
| |
|
constexpr sarr_ext_soa & | operator= (const sarr_ext_soa &other) |
| |
|
constexpr sarr_ext_soa & | operator= (sarr_ext_soa &&other) noexcept |
| |
|
GAIA_NODISCARD constexpr pointer | data () noexcept |
| |
|
GAIA_NODISCARD constexpr const_pointer | data () const noexcept |
| |
|
GAIA_NODISCARD constexpr decltype(auto) | operator[] (size_type pos) noexcept |
| |
|
GAIA_NODISCARD constexpr decltype(auto) | operator[] (size_type pos) const noexcept |
| |
|
constexpr void | push_back (const T &arg) noexcept |
| |
|
constexpr void | push_back (T &&arg) noexcept |
| |
|
template<typename... Args> |
| constexpr decltype(auto) | emplace_back (Args &&... args) noexcept |
| |
|
constexpr void | pop_back () noexcept |
| |
| iterator | insert (iterator pos, const T &arg) noexcept |
| | Insert the element to the position given by iterator pos.
|
| |
| iterator | insert (iterator pos, T &&arg) noexcept |
| | Insert the element to the position given by iterator pos.
|
| |
| constexpr iterator | erase (iterator pos) noexcept |
| | Removes the element at pos.
|
| |
| iterator | erase (iterator first, iterator last) noexcept |
| | Removes the elements in the range [first, last)
|
| |
| iterator | erase_at (size_type pos) noexcept |
| | Removes the element at index.
|
| |
|
constexpr void | clear () noexcept |
| |
|
constexpr void | resize (size_type count) noexcept |
| |
| template<typename Func > |
| auto | retain (Func &&func) noexcept |
| | Removes all elements that fail the predicate.
|
| |
|
GAIA_NODISCARD constexpr size_type | size () const noexcept |
| |
|
GAIA_NODISCARD constexpr bool | empty () const noexcept |
| |
|
GAIA_NODISCARD constexpr size_type | capacity () const noexcept |
| |
|
GAIA_NODISCARD constexpr size_type | max_size () const noexcept |
| |
|
GAIA_NODISCARD constexpr decltype(auto) | front () noexcept |
| |
|
GAIA_NODISCARD constexpr decltype(auto) | front () const noexcept |
| |
|
GAIA_NODISCARD constexpr decltype(auto) | back () noexcept |
| |
|
GAIA_NODISCARD constexpr decltype(auto) | back () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | begin () noexcept |
| |
|
GAIA_NODISCARD constexpr auto | begin () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | cbegin () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | rbegin () noexcept |
| |
|
GAIA_NODISCARD constexpr auto | rbegin () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | crbegin () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | end () noexcept |
| |
|
GAIA_NODISCARD constexpr auto | end () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | cend () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | rend () noexcept |
| |
|
GAIA_NODISCARD constexpr auto | rend () const noexcept |
| |
|
GAIA_NODISCARD constexpr auto | crend () const noexcept |
| |
|
GAIA_NODISCARD constexpr bool | operator== (const sarr_ext_soa &other) const noexcept |
| |
|
GAIA_NODISCARD constexpr bool | operator!= (const sarr_ext_soa &other) const noexcept |
| |
|
template<size_t Item> |
| auto | view_mut () noexcept |
| |
|
template<size_t Item> |
| auto | view () const noexcept |
| |
template<typename T, sarr_ext_soa_detail::size_type N>
class gaia::cnt::sarr_ext_soa< T, N >
Array of elements of type.
- Template Parameters
-
| T | with fixed capacity |
| N | and variable size allocated on stack. Interface compatiblity with std::array where it matters. |