|
constexpr iterator | begin () const noexcept |
|
constexpr pointer | data () const noexcept |
|
constexpr bool | empty () const noexcept |
|
constexpr iterator | end () const noexcept |
|
template<index_type Count> |
constexpr span< T, Count > | first () const noexcept |
|
constexpr span< T > | first (index_type count) const noexcept |
|
template<index_type Count> |
constexpr span< T, Count > | last () const noexcept |
|
constexpr span< T > | last (index_type count) const noexcept |
|
template<typename U , index_type M, requires = (EqualityComparable<T, U>())> |
bool | operator!= (span< U, M > const &that) const |
|
template<typename U , index_type M, requires = (TotallyOrdered<T, U>())> |
bool | operator< (span< U, M > const &that) const |
|
template<typename U , index_type M, requires = (TotallyOrdered<T, U>())> |
bool | operator<= (span< U, M > const &that) const |
|
template<typename U , index_type M, requires = (EqualityComparable<T, U>())> |
bool | operator== (span< U, M > const &that) const |
|
template<typename U , index_type M, requires = (TotallyOrdered<T, U>())> |
bool | operator> (span< U, M > const &that) const |
|
template<typename U , index_type M, requires = (TotallyOrdered<T, U>())> |
bool | operator>= (span< U, M > const &that) const |
|
constexpr reference | operator[] (index_type idx) const noexcept |
|
constexpr reverse_iterator | rbegin () const noexcept |
|
constexpr reverse_iterator | rend () const noexcept |
|
constexpr index_type | size_bytes () const noexcept |
|
constexpr | span (pointer ptr, index_type count) noexcept |
|
template<typename Rng , requires = (CompatibleRange<Rng>()), requires = (DynamicConversion<Rng>())> |
constexpr | span (Rng &&rng) noexcept(noexcept(ranges::data(rng), ranges::size(rng))) |
|
template<typename Rng , requires = (CompatibleRange<Rng>()), requires = (StaticConversion<Rng>())> |
constexpr | span (Rng &&rng) noexcept(noexcept(ranges::data(rng))) |
|
template<index_type Offset, index_type Count> |
constexpr span< T, Count > | subspan () const noexcept |
|
template<index_type Offset> |
constexpr dynamic_extent | subspan (index_type offset) const noexcept |
|
constexpr span< T, dynamic_extent > | subspan (index_type offset, index_type count) const noexcept |
|
auto | at (range_difference_type_t< D > n) -> decltype(std::declval< D & >().begin()[n]) |
| Returns a reference to the element at specified location pos, with bounds checking.
|
|
auto | at (range_difference_type_t< D > n) const -> decltype(std::declval< D const & >().begin()[n]) |
|
range_reference_t< D > | back () |
| Access the last element in a range:
|
|
range_reference_t< D const > | back () const |
|
constexpr bool | empty () const noexcept |
|
constexpr bool | empty () const noexcept(noexcept(bool(ranges::begin(std::declval< D const & >())==ranges::end(std::declval< D const & >())))) |
|
range_reference_t< D > | front () |
| Access the first element in a range:
|
|
range_reference_t< D const > | front () const |
|
constexpr | operator bool () const noexcept(noexcept(ranges::empty(std::declval< D const & >()))) |
|
| operator Container () |
| Implicit conversion to something that looks like a container.
|
|
| operator Container () const |
|
constexpr auto | operator! () const noexcept(noexcept(decltype(ranges::empty(std::declval< D const & >()))(ranges::empty(std::declval< D const & >())))) -> decltype(ranges::empty(std::declval< D const & >())) |
|
view_interface & | operator= (view_interface &&)=default |
|
view_interface & | operator= (view_interface const &)=default |
|
auto | operator[] (range_difference_type_t< D > n) -> decltype(std::declval< D & >().begin()[n]) |
| Simple indexing:
|
|
auto | operator[] (range_difference_type_t< D > n) const -> decltype(std::declval< D const & >().begin()[n]) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >> offs) &-> decltype(std::declval< Slice >()(std::declval< D & >(), offs.from, offs.to)) |
| Python-ic slicing:
|
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >> offs) const &-> decltype(std::declval< Slice >()(std::declval< D const & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >> offs) &&-> decltype(std::declval< Slice >()(std::declval< D >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >, detail::from_end_< range_difference_type_t< D >>> offs) &-> decltype(std::declval< Slice >()(std::declval< D & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >, detail::from_end_< range_difference_type_t< D >>> offs) const &-> decltype(std::declval< Slice >()(std::declval< D const & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >, detail::from_end_< range_difference_type_t< D >>> offs) &&-> decltype(std::declval< Slice >()(std::declval< D >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< detail::from_end_< range_difference_type_t< D >>, detail::from_end_< range_difference_type_t< D >>> offs) &-> decltype(std::declval< Slice >()(std::declval< D & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< detail::from_end_< range_difference_type_t< D >>, detail::from_end_< range_difference_type_t< D >>> offs) const &-> decltype(std::declval< Slice >()(std::declval< D const & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< detail::from_end_< range_difference_type_t< D >>, detail::from_end_< range_difference_type_t< D >>> offs) &&-> decltype(std::declval< Slice >()(std::declval< D >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >, end_fn > offs) &-> decltype(std::declval< Slice >()(std::declval< D & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >, end_fn > offs) const &-> decltype(std::declval< Slice >()(std::declval< D const & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< range_difference_type_t< D >, end_fn > offs) &&-> decltype(std::declval< Slice >()(std::declval< D >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< detail::from_end_< range_difference_type_t< D >>, end_fn > offs) &-> decltype(std::declval< Slice >()(std::declval< D & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< detail::from_end_< range_difference_type_t< D >>, end_fn > offs) const &-> decltype(std::declval< Slice >()(std::declval< D const & >(), offs.from, offs.to)) |
|
auto | operator[] (detail::slice_bounds< detail::from_end_< range_difference_type_t< D >>, end_fn > offs) &&-> decltype(std::declval< Slice >()(std::declval< D >(), offs.from, offs.to)) |
|
constexpr range_size_type_t< D > | size () const noexcept |
| Access the size of the range, if it can be determined:
|
|
constexpr range_size_type_t< D > | size () const |
|
| view_interface (view_interface &&)=default |
|
| view_interface (view_interface const &)=default |
|