#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> |
Public Member Functions | |
Constructors | |
template<std::size_t DeducedExtent = Extent, typename std::enable_if<(DeducedExtent==0), bool >::type = true> | |
constexpr | span () noexcept |
constexpr | span (iterator first, size_type count) |
template<typename EndType, typename std::enable_if<!std::is_convertible< EndType, std::size_t >::value, bool >::type = true> | |
constexpr | span (pointer first, EndType end) |
template<std::size_t DeducedExtent = Extent, typename std::enable_if<(DeducedExtent !=0), bool >::type = true> | |
constexpr | span (element_type(&arr)[DeducedExtent]) noexcept |
template<typename ArrayElementType, typename std::enable_if< std::is_convertible< ArrayElementType(*)[], T(*)[]>::value, bool >::type = true> | |
constexpr | span (std::array< ArrayElementType, Extent > &arr) noexcept |
template<typename ArrayElementType, typename std::enable_if< std::is_convertible< const ArrayElementType(*)[], T(*)[]>::value, bool >::type = true> | |
constexpr | span (const std::array< ArrayElementType, Extent > &arr) noexcept |
template<typename DeducedElementType, typename std::enable_if< std::is_convertible< DeducedElementType(*)[], element_type(*)[]>::value, bool >::type = true> | |
constexpr | span (const span< DeducedElementType, dynamic_extent > &source) noexcept |
template<typename DeducedElementType, typename std::enable_if< std::is_convertible< DeducedElementType(*)[], element_type(*)[]>::value, bool >::type = true> | |
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 | |
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 !=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 = Extent |
A borrowed view into a contiguous set of objects.
This version is for spans where the extent is static (see span< T, dynamic_extent > for the dynamic extent specialization)
Spans can either be static, where the set of objects is fixed and known, or dynamic where the number of objects in the contiguous set may change. This template is compatible with class: std::span available in C++20.
cetl::span
... T | The element type. |
Extent | The extent type of this span; either dynamic or static. |
using cetl::pf20::span< T, Extent >::const_pointer = const T* |
A constant pointer to the element type.
using cetl::pf20::span< T, Extent >::const_reference = const T& |
A constant reference type to the element.
using cetl::pf20::span< T, Extent >::difference_type = std::ptrdiff_t |
Type used to compare two locations in the span.
using cetl::pf20::span< T, Extent >::element_type = T |
The element type over which the span operates.
using cetl::pf20::span< T, Extent >::iterator = pointer |
Type for iterating through the span.
using cetl::pf20::span< T, Extent >::pointer = T* |
The element pointer type.
using cetl::pf20::span< T, Extent >::reference = T& |
A reference type to the element.
using cetl::pf20::span< T, Extent >::reverse_iterator = std::reverse_iterator<iterator> |
Reverse iterator type.
using cetl::pf20::span< T, Extent >::size_type = std::size_t |
Used to track the size in bytes.
using cetl::pf20::span< T, Extent >::value_type = typename std::remove_cv<T>::type |
The non-cv type of elements.
|
inlineconstexprnoexcept |
Default constructor.
DeducedExtent | The Extent deduced by the compiler. |
type | SFINAE enablement of this constructor only where the extent > 0. |
Referenced by first(), first(), last(), last(), operator=(), span(), span(), span(), subspan(), and subspan().
|
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. |
References CETL_DEBUG_ASSERT, extent, and first().
|
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. |
References CETL_DEBUG_ASSERT, std::distance(), end(), and first().
|
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() |
References CETL_DEBUG_ASSERT, extent, and span().
|
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 . |
References span().
|
constexprdefaultnoexcept |
|
inlineconstexpr |
Returns a reference to the last element.
Calling this method on an empty span is undefined.
*(obj.end() - 1)
. References CETL_DEBUG_ASSERT.
|
inlineconstexprnoexcept |
Iterator to the first element in the span.
This is the same as span::end() if the size of the span is 0.
Referenced by front(), and rend().
|
inlineconstexprnoexcept |
Provides access to the internal data the span is a view into.
|
inlineconstexprnoexcept |
If the span has a zero size or not.
|
inlineconstexprnoexcept |
Iterator to the address after the last element in the span.
Referenced by rbegin(), and 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
. References span().
Referenced by span(), and 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
. References CETL_DEBUG_ASSERT, and span().
|
inlineconstexpr |
Returns a reference to the first element.
Calling this method on an empty span is undefined.
*obj.begin()
. References begin(), and CETL_DEBUG_ASSERT.
|
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 current span's size. |
count
and a dynamic extent. References CETL_DEBUG_ASSERT, extent, and span().
|
constexprdefaultnoexcept |
Default assignment operator.
rhs | Right-hand-side of the assignment expression. |
*this
References span().
|
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. |
References CETL_DEBUG_ASSERT.
|
inlineconstexprnoexcept |
Reverse iterator to the last element in the span.
This is the same as span::rend if the span size is 0.
References end().
|
inlineconstexprnoexcept |
Reverse iterator to the address before the first element in the span.
References begin().
|
inlineconstexprnoexcept |
The size of the span.
span::extent
. Referenced by subspan(), and subspan().
|
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
. References cetl::pf20::dynamic_extent, extent, size(), span(), 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 . |
References CETL_DEBUG_ASSERT, cetl::pf20::dynamic_extent, size(), span(), and subspan().
|
staticconstexpr |