#include "cetl/pf20/span.hpp"
Public Types | |
using | element_type = T |
using | value_type = typename std::remove_cv<T>::type |
using | pointer = T* |
using | const_pointer = const T* |
using | reference = T& |
using | const_reference = const T& |
using | size_type = std::size_t |
using | difference_type = std::ptrdiff_t |
using | iterator = pointer |
using | reverse_iterator = std::reverse_iterator<iterator> |
using | element_type |
using | value_type |
using | pointer |
using | const_pointer |
using | reference |
using | const_reference |
using | size_type |
using | difference_type |
using | iterator |
using | reverse_iterator |
Public Member Functions | |
Constructors | |
constexpr | span () noexcept |
constexpr | span (iterator first, size_type count) |
template<typename EndType, typename std::enable_if<!std::is_convertible< EndType, size_type >::value, bool >::type = true> | |
constexpr | span (pointer first, EndType end) |
template<std::size_t ArrayLen> | |
constexpr | span (element_type(&arr)[ArrayLen]) noexcept |
template<typename ArrayElementType, std::size_t ArrayLen, typename std::enable_if< std::is_convertible< ArrayElementType(*)[], T(*)[]>::value, bool >::type = true> | |
constexpr | span (std::array< ArrayElementType, ArrayLen > &arr) noexcept |
template<typename ArrayElementType, std::size_t ArrayLen, typename std::enable_if< std::is_convertible< const ArrayElementType(*)[], T(*)[]>::value, bool >::type = true> | |
constexpr | span (const std::array< ArrayElementType, ArrayLen > &arr) noexcept |
template<class DeducedElementType, size_type DeducedExtent, typename std::enable_if< std::is_convertible< DeducedElementType(*)[], element_type(*)[]>::value, bool >::type = true> | |
constexpr | span (const span< DeducedElementType, DeducedExtent > &source) noexcept |
constexpr | span (const span &) noexcept=default |
Operators | |
constexpr span & | operator= (const span &rhs) noexcept=default |
constexpr reference | operator[] (size_type idx) const |
Iterators | |
constexpr iterator | begin () const noexcept |
constexpr iterator | end () const noexcept |
constexpr reverse_iterator | rbegin () const noexcept |
constexpr reverse_iterator | rend () const noexcept |
Element Access | |
constexpr reference | front () const |
constexpr reference | back () const |
constexpr pointer | data () const noexcept |
Observers | |
constexpr bool | empty () const noexcept |
constexpr size_type | size () const noexcept |
constexpr size_type | size_bytes () const noexcept |
sub-views | |
template<size_type Count> | |
constexpr span< element_type, Count > | first () const |
constexpr span< element_type, dynamic_extent > | first (size_type count) const |
template<size_type Count> | |
constexpr span< element_type, Count > | last () const |
constexpr span< element_type, dynamic_extent > | last (size_type count) const |
template<size_type Offset, size_type Count = dynamic_extent> | |
constexpr span< element_type, Count > | subspan () const |
constexpr span< element_type, dynamic_extent > | subspan (size_type Offset, size_type Count=dynamic_extent) const |
Constructors | |
constexpr | span () noexcept |
constexpr | span (iterator first, size_type count) |
constexpr | span (pointer first, EndType end) |
constexpr | span (element_type(&arr)[DeducedExtent]) noexcept |
constexpr | span (std::array< ArrayElementType, Extent > &arr) noexcept |
constexpr | span (const std::array< ArrayElementType, Extent > &arr) noexcept |
constexpr | span (const span< DeducedElementType, dynamic_extent > &source) noexcept |
constexpr | span (const span< DeducedElementType, Extent > &source) noexcept |
constexpr | span (const span &) noexcept=default |
Operators | |
constexpr span & | operator= (const span &rhs) noexcept=default |
constexpr reference | operator[] (size_type idx) const |
Iterators | |
constexpr iterator | begin () const noexcept |
constexpr iterator | end () const noexcept |
constexpr reverse_iterator | rbegin () const noexcept |
constexpr reverse_iterator | rend () const noexcept |
Element Access | |
constexpr reference | front () const |
constexpr reference | back () const |
constexpr pointer | data () const noexcept |
Observers | |
constexpr bool | empty () const noexcept |
constexpr size_type | size () const noexcept |
constexpr size_type | size_bytes () const noexcept |
sub-views | |
constexpr span< element_type, Count > | first () const |
constexpr span< element_type, dynamic_extent > | first (size_type count) const |
constexpr span< element_type, Count > | last () const |
constexpr span< element_type, dynamic_extent > | last (size_type count) const |
constexpr span< element_type,(Count !=dynamic_extent) ? Count :Extent - Offset > | subspan () const |
constexpr span< element_type, dynamic_extent > | subspan (size_type Offset, size_type Count=dynamic_extent) const |
Static Public Attributes | |
static constexpr std::size_t | extent = dynamic_extent |
static constexpr std::size_t | extent |
Specialization of span where the extent is dynamic.
using cetl::pf20::span< T, Extent >::const_pointer |
A constant pointer to the element type.
using cetl::pf20::span< T, dynamic_extent >::const_pointer = const T* |
A constant pointer to the element type.
using cetl::pf20::span< T, Extent >::const_reference |
A constant reference type to the element.
using cetl::pf20::span< T, dynamic_extent >::const_reference = const T& |
A constant reference type to the element.
using cetl::pf20::span< T, Extent >::difference_type |
Type used to compare two locations in the span.
using cetl::pf20::span< T, dynamic_extent >::difference_type = std::ptrdiff_t |
Type used to compare two locations in the span.
using cetl::pf20::span< T, Extent >::element_type |
The element type over which the span operates.
using cetl::pf20::span< T, dynamic_extent >::element_type = T |
The element type over which the span operates.
using cetl::pf20::span< T, Extent >::iterator |
Type for iterating through the span.
using cetl::pf20::span< T, dynamic_extent >::iterator = pointer |
Type for iterating through the span.
using cetl::pf20::span< T, Extent >::pointer |
The element pointer type.
using cetl::pf20::span< T, dynamic_extent >::pointer = T* |
The element pointer type.
using cetl::pf20::span< T, Extent >::reference |
A reference type to the element.
using cetl::pf20::span< T, dynamic_extent >::reference = T& |
A reference type to the element.
using cetl::pf20::span< T, Extent >::reverse_iterator |
Reverse iterator type.
using cetl::pf20::span< T, dynamic_extent >::reverse_iterator = std::reverse_iterator<iterator> |
Reverse iterator type.
using cetl::pf20::span< T, Extent >::size_type |
Used to track the size in bytes.
using cetl::pf20::span< T, dynamic_extent >::size_type = std::size_t |
Used to track the size in bytes.
using cetl::pf20::span< T, Extent >::value_type |
The non-cv type of elements.
using cetl::pf20::span< T, dynamic_extent >::value_type = typename std::remove_cv<T>::type |
The non-cv type of elements.
|
inlineconstexprnoexcept |
Default constructor.
Referenced by back(), first(), front(), last(), and operator[]().
|
inlineconstexpr |
Creates a span starting at an element for a given length.
The span's view into the data starts at the element pointed to by the first pointer. The size of the span is provided by the count.
first | The first element in the span. |
count | The number of elements in the span. |
|
inlineconstexpr |
Creates a span starting at an element to the element before the given end.
That is, span == [first, end)
. The size of the span becomes end - first.
EndType | End iterator type is deduced to support SFINAE pattern. |
type | Participates in overload resolution only if the EndType cannot be converted to size_type. |
first | The first element in the span. |
end | The element after the last element in the span. |
|
inlineconstexprnoexcept |
Creates a span starting at the first element of a c-style array through to the end of that array.
ArrayLen | Deduced length of the c array to become the size of the span. |
arr | Reference to a C-style array. |
|
inlineconstexprnoexcept |
Creates a span over an entire std::array
starting at the array's first element and with a size set to ArrayLen
.
ArrayElementType | Deduced array element type to support SFINAE enablement. |
ArrayLen | The length of the array. span::size() is set to this value. |
type | Enables this override only if the array's element type is the same as the span's or if the conversion is a simple qualification conversion. |
arr | The array to create the view into. |
|
inlineconstexprnoexcept |
Creates a span over an entire const std::array
starting at the array's first element and with a size set to ArrayLen
.
ArrayElementType | Deduced array element type to support SFINAE enablement. |
ArrayLen | The length of the array. span::size() is set to this value. |
type | Enables this override only if the array's element type is the same as the span's or if the conversion is a simple qualification conversion. |
arr | The array to create the view into. |
|
inlineconstexprnoexcept |
Copy constructor to create a span from another span.
This overload allows conversion of any span to a dynamic span.
DeducedElementType | The element type of the source span. |
DeducedExtent | The extent of the source span. |
type | Enables this override only if the element conversion is a simple qualification conversion. |
source | The span to copy from. The resulting span has size() == source.size() and data() == source.data() |
|
constexprdefaultnoexcept |
Default copy constructor.
|
inlineconstexprnoexcept |
Default constructor.
DeducedExtent | The Extent deduced by the compiler. |
type | SFINAE enablement of this constructor only where the extent > 0. |
|
inlineexplicitconstexpr |
Creates a span starting at an element for a given length.
The span's view into the data starts at the element pointed to by the first pointer. The size of the span is provided by the count where it is undefined behavior to provide a count value that is not the same as span::extent.
first | The first element in the span. |
count | The number of elements in the span. |
|
inlineexplicitconstexpr |
Creates a span starting at an element to the element before the given end.
That is, span == [first, end)
. It is undefined to provide iterators where end - first != Extent
EndType | End iterator type is deduced to support SFINAE pattern. |
type | Participates in overload resolution only if the EndType cannot be converted to size_type. |
first | The first element in the span. |
end | The element after the last element in the span. |
|
inlineconstexprnoexcept |
Creates a span starting at the first element of a c-style array through to the end of that array.
arr | Reference to a C-style array. |
|
inlineconstexprnoexcept |
Creates a span over an entire std::array
starting at the array's first element.
ArrayElementType | Deduced array element type to support SFINAE enablement. |
type | Enables this override only if the array's element type is the same as the span's or if the conversion is a simple qualification conversion. |
arr | The array to create the view into. |
|
inlineconstexprnoexcept |
Creates a span over an entire const std::array
starting at the array's first element.
ArrayElementType | Deduced array element type to support SFINAE enablement. |
type | Enables this override only if the array's element type is the same as the span's or if the conversion is a simple qualification conversion. |
arr | The array to create the view into. |
|
inlineexplicitconstexprnoexcept |
Copy constructor to create a span from another span.
This overload allows conversion of a dynamic span of size() N to a static span with an extent of N. It is undefined to provide a source span with a size() != this span's size.
DeducedElementType | The element type of the source span. |
type | Enables this override only if the element conversion is a simple qualification conversion. |
source | The span to copy from. The resulting span has size() == source.size() and data() == / source.data() |
|
inlineconstexprnoexcept |
Copy constructor to create a span from another span.
DeducedElementType | The element type of the source span. |
type | Enables this override only if the element conversion is a simple qualification conversion. |
source | The span to copy from. The resulting span has size() == source.size() and data() == source.data() . For this overload extent == source::extent is also true and extent != dynamic_extent . |
|
constexprdefaultnoexcept |
Default copy constructor.
|
inlineconstexpr |
Returns a reference to the last element.
Calling this method on an empty span is undefined.
*(obj.end() - 1)
.
|
inlineconstexpr |
Returns a reference to the last element.
Calling this method on an empty span is undefined.
*(obj.end() - 1)
. References back(), empty(), and span().
Referenced by back().
|
inlineconstexprnoexcept |
Iterator to the first element in the span.
This is the same as span::end() if the size of the span is 0.
|
inlineconstexprnoexcept |
Iterator to the first element in the span.
This is the same as span::end() if the size of the span is 0.
|
inlineconstexprnoexcept |
Provides access to the internal data the span is a view into.
|
inlineconstexprnoexcept |
Provides access to the internal data the span is a view into.
Referenced by operator[]().
|
inlineconstexprnoexcept |
If the span has a zero size or not.
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
Iterator to the address after the last element in the span.
|
inlineconstexprnoexcept |
Iterator to the address after the last element in the span.
Referenced by span().
|
inlineconstexpr |
Create a new span from the start of the current span for Count
elements.
Count | Number of elements for the sub-span. |
Count
.
|
inlineconstexpr |
Create a new span from the start of the current span for Count
elements.
Count | Number of elements for the sub-span. The behavior of this method and the returned span is undefined if Count is greater than this span's size |
Count
. References size(), and span().
Referenced by span().
|
inlineconstexpr |
Create a new span from the start of the current span for count elements.
count | The number of elements for the sub-span. Where count is greater than the current span's size the behavior is undefined. |
count
.
|
inlineconstexpr |
Create a new span from the start of the current span for count elements.
count | The number of elements for the sub-span. Where count is greater than the current span's size the behavior is undefined. |
count
.
|
inlineconstexpr |
Returns a reference to the first element.
Calling this method on an empty span is undefined.
*obj.begin()
.
|
inlineconstexpr |
|
inlineconstexpr |
Create a new span Count
elements from the last item of the current span to its end.
Count | Number of elements for the sub-span. |
Count
.
|
inlineconstexpr |
Create a new span Count
elements from the last item of the current span to its end.
Count | Number of elements for the sub-span. The behavior of this method is undefined where Count is greater than the span's current size. |
Count
.
|
inlineconstexpr |
Create a new span count
elements from the last item of the current span to its end.
count | Number of elements for the sub-span. The behavior of this method is undefined where count is greater than the current span's size. |
count
and a dynamic extent.
|
inlineconstexpr |
Create a new span count
elements from the last item of the current span to its end.
count | Number of elements for the sub-span. The behavior of this method is undefined where count is greater than the current span's size. |
count
and a dynamic extent.
|
constexprdefaultnoexcept |
Default assignment operator.
rhs | Right-hand-side of the assignment expression. |
*this
|
constexprdefaultnoexcept |
Default assignment operator.
rhs | Right-hand-side of the assignment expression. |
*this
|
inlineconstexpr |
Reference to an element in the span.
idx | The 0-based index in the span. The behavior of this method is undefined if idx is >= to size. |
|
inlineconstexpr |
Reference to an element in the span.
idx | The 0-based index in the span. The behavior of this method is undefined if idx is >= to size. |
|
inlineconstexprnoexcept |
Reverse iterator to the last element in the span.
This is the same as span::rend if the span size is 0.
|
inlineconstexprnoexcept |
Reverse iterator to the last element in the span.
This is the same as span::rend if the span size is 0.
|
inlineconstexprnoexcept |
Reverse iterator to the address before the first element in the span.
|
inlineconstexprnoexcept |
Reverse iterator to the address before the first element in the span.
|
inlineconstexprnoexcept |
The size of the span.
span::extent
.
|
inlineconstexprnoexcept |
Returns the size of the span.
Referenced by first(), last(), and subspan().
|
inlineconstexprnoexcept |
|
inlineconstexprnoexcept |
|
inlineconstexpr |
Create a new span Offset
elements from the start of the current span and for Count
elements.
Offset | Number of elements from the start of the current span for the subspan. |
Count | The number of elements from the Offset to include in the subspan. If this value is dynamic_extent then the Count is size() - Offset . |
Extent
is Count
if this was not dynamic_extent
otherwise the new span's Extent
is this span's Extent
minus Offset
.
|
inlineconstexpr |
Create a new span Offset elements from the start of the current span and for Count
elements.
The behavior of this method is undefined where Count
is greater-than the size of this span or if Count
is not dynamic_extent but Count
is greater-than size() - Offset
.
Offset | Number of elements from the start of the current span for the subspan. |
Count | The number of elements from the Offset to include in the subspan. If this value is dynamic_extent then the Count is size() - Offset . |
Extent
is Count
if that parameter was not dynamic_extent
otherwise the new span's Extent
is dynamic_extent
. References extent, and subspan().
Referenced by subspan(), and subspan().
|
inlineconstexpr |
Create a new span Offset
elements from the start of the current span and for either Count
elements or, if Count is dynamic_extent
, for the remaining size of the span (i.e.
size() - Offset
). The behavior of this method is undefined where Count
is greater-than the size of this span or if Count
is not dynamic_extent but Count
is greater-than size() - Offset
.
Offset | Number of elements from the start of the current span for the subspan. |
Count | The number of elements from the Offset to include in the subspan. If this value is dynamic_extent then the Count is size() - Offset . |
|
inlineconstexpr |
Create a new span Offset
elements from the start of the current span and for either Count
elements or, if Count is dynamic_extent
, for the remaining size of the span (i.e.
size() - Offset
). The behavior of this method is undefined where Count
is greater-than the size of this span or if Count
is not dynamic_extent but Count
is greater-than size() - Offset
.
Offset | Number of elements from the start of the current span for the subspan. |
Count | The number of elements from the Offset to include in the subspan. If this value is dynamic_extent then the Count is size() - Offset . |
|
staticconstexpr |
The value of Extent for this template instantiation.
|
staticconstexpr |
The value of Extent for this template instantiation.
Referenced by subspan().