libcopp 2.3.1
|
#include <span.h>
Public Types | |
using | element_type = T |
using | value_type = typename std::remove_cv< T >::type |
using | size_type = std::size_t |
using | difference_type = std::ptrdiff_t |
using | pointer = T * |
using | const_pointer = const T * |
using | reference = T & |
using | const_reference = const T & |
using | iterator = T * |
using | reverse_iterator = std::reverse_iterator< iterator > |
Public Member Functions | |
template<bool B = EXTENT == 0, typename std::enable_if< B >::type * = nullptr> | |
span () noexcept | |
span (T *input_data, size_t count) noexcept | |
span (T *first, T *last) noexcept | |
template<size_t N, typename std::enable_if< EXTENT==N >::type * = nullptr> | |
span (T(&array)[N]) noexcept | |
template<size_t N, typename std::enable_if< EXTENT==N >::type * = nullptr> | |
span (std::array< T, N > &array) noexcept | |
template<size_t N, typename std::enable_if< EXTENT==N >::type * = nullptr> | |
span (const std::array< T, N > &array) noexcept | |
template<class C , typename std::enable_if< !detail::is_specialized_span_convertible< typename std::decay< C >::type >::value &&std::is_convertible< typename std::remove_pointer< decltype(std::declval< C >().size())>::type(*)[], T(*)[]>::value &&std::is_convertible< decltype(std::declval< C >().size()), size_t >::value , ::type * = nullptr> | |
span (C &&c) noexcept(noexcept(c.data(), c.size())) | |
template<class U , size_t N, typename std::enable_if< N==EXTENT &&std::is_convertible< U(*)[], T(*)[]>::value >::type * = nullptr> | |
span (const span< U, N > &other) noexcept | |
span (const span &) noexcept=default | |
bool | empty () const noexcept |
T * | data () const noexcept |
size_t | size () const noexcept |
T & | operator[] (size_t index) const noexcept |
T * | begin () const noexcept |
T * | end () const noexcept |
Static Public Attributes | |
static constexpr size_t | extent = EXTENT |
Private Attributes | |
T * | data_ |
Back port of std::span.
See https://en.cppreference.com/w/cpp/container/span for interface documentation.
Note: This provides a subset of the methods available on std::span.
Note: The std::span API specifies error cases to have undefined behavior, so this implementation chooses to terminate or assert rather than throw exceptions.
using gsl::span< T, EXTENT >::const_pointer = const T * |
using gsl::span< T, EXTENT >::const_reference = const T & |
using gsl::span< T, EXTENT >::difference_type = std::ptrdiff_t |
using gsl::span< T, EXTENT >::element_type = T |
using gsl::span< T, EXTENT >::iterator = T * |
using gsl::span< T, EXTENT >::pointer = T * |
using gsl::span< T, EXTENT >::reference = T & |
using gsl::span< T, EXTENT >::size_type = std::size_t |
using gsl::span< T, EXTENT >::value_type = typename std::remove_cv<T>::type |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
defaultnoexcept |
|
inlinenoexcept |
Definition at line 170 of file span.h.
References gsl::span< T, EXTENT >::data_.
|
inlinenoexcept |
Definition at line 161 of file span.h.
References gsl::span< T, EXTENT >::data_.
|
inlinenoexcept |
|
inlinenoexcept |
Definition at line 172 of file span.h.
References gsl::span< T, EXTENT >::data_.
|
inlinenoexcept |
Definition at line 165 of file span.h.
References gsl::span< T, EXTENT >::data_.
|
inlinenoexcept |
|
private |
Definition at line 175 of file span.h.
Referenced by gsl::span< T, EXTENT >::begin(), gsl::span< T, dynamic_extent >::begin(), gsl::span< T, EXTENT >::data(), gsl::span< T, dynamic_extent >::data(), gsl::span< T, EXTENT >::end(), gsl::span< T, dynamic_extent >::end(), gsl::span< T, EXTENT >::operator[](), and gsl::span< T, dynamic_extent >::operator[]().
|
staticconstexpr |