|
template<bool Dependent = false, class = std::enable_if_t<(Dependent || Extent <= 0)>> |
MATIOCPP_CONSTEXPR | Span () noexcept |
|
MATIOCPP_CONSTEXPR | Span (pointer ptr, index_type count) |
|
MATIOCPP_CONSTEXPR | Span (pointer firstElem, pointer lastElem) |
|
template<std::size_t N> |
MATIOCPP_CONSTEXPR | Span (element_type(&arr)[N]) noexcept |
|
template<std::size_t N, class ArrayElementType = std::remove_const_t<element_type>> |
MATIOCPP_CONSTEXPR | Span (std::array< ArrayElementType, N > &arr) noexcept |
|
template<std::size_t N> |
MATIOCPP_CONSTEXPR | Span (const std::array< std::remove_const_t< element_type >, N > &arr) noexcept |
|
template<class Container , class = std::enable_if_t<SpanUtils::has_data_method<Container>::value && SpanUtils::has_size_method<Container>::value>> |
MATIOCPP_CONSTEXPR | Span (Container &cont) |
|
template<class Container , class = std::enable_if_t<SpanUtils::has_data_method<Container>::value && SpanUtils::has_size_method<Container>::value>> |
MATIOCPP_CONSTEXPR | Span (const Container &cont) |
|
MATIOCPP_CONSTEXPR | Span (const Span &other) noexcept=default |
|
template<class OtherElementType , std::ptrdiff_t OtherExtent, class = std::enable_if_t< details::is_allowed_extent_conversion<OtherExtent, Extent>::value && details::is_allowed_element_type_conversion<OtherElementType, element_type>::value>> |
MATIOCPP_CONSTEXPR | Span (const Span< OtherElementType, OtherExtent > &other) |
|
| ~Span () noexcept=default |
|
MATIOCPP_CONSTEXPR Span & | operator= (const Span &other) noexcept=default |
|
template<std::ptrdiff_t Count> |
MATIOCPP_CONSTEXPR Span< element_type, Count > | first () const |
|
template<std::ptrdiff_t Count> |
MATIOCPP_CONSTEXPR Span< element_type, Count > | last () const |
|
template<std::ptrdiff_t Offset, std::ptrdiff_t Count = dynamic_extent> |
MATIOCPP_CONSTEXPR auto | subspan () const -> typename details::calculate_subspan_type< ElementType, Extent, Offset, Count >::type |
|
MATIOCPP_CONSTEXPR Span< element_type, dynamic_extent > | first (index_type count) const |
|
MATIOCPP_CONSTEXPR Span< element_type, dynamic_extent > | last (index_type count) const |
|
MATIOCPP_CONSTEXPR Span< element_type, dynamic_extent > | subspan (index_type offset, index_type count=dynamic_extent) const |
|
MATIOCPP_CONSTEXPR index_type | size () const noexcept |
|
MATIOCPP_CONSTEXPR index_type | size_bytes () const noexcept |
|
MATIOCPP_CONSTEXPR bool | empty () const noexcept |
|
MATIOCPP_CONSTEXPR reference | operator[] (index_type idx) const |
|
MATIOCPP_CONSTEXPR const_reference | getVal (index_type idx) const |
|
MATIOCPP_CONSTEXPR bool | setVal (index_type idx, const_reference val) |
|
MATIOCPP_CONSTEXPR reference | at (index_type idx) const |
|
MATIOCPP_CONSTEXPR reference | operator() (index_type idx) const |
|
MATIOCPP_CONSTEXPR pointer | data () const noexcept |
|
MATIOCPP_CONSTEXPR iterator | begin () const noexcept |
|
MATIOCPP_CONSTEXPR iterator | end () const noexcept |
|
MATIOCPP_CONSTEXPR const_iterator | cbegin () const noexcept |
|
MATIOCPP_CONSTEXPR const_iterator | cend () const noexcept |
|
MATIOCPP_CONSTEXPR reverse_iterator | rbegin () const noexcept |
|
MATIOCPP_CONSTEXPR reverse_iterator | rend () const noexcept |
|
MATIOCPP_CONSTEXPR const_reverse_iterator | crbegin () const noexcept |
|
MATIOCPP_CONSTEXPR const_reverse_iterator | crend () const noexcept |
|
Definition at line 382 of file Span.h.