3#ifndef IMT_BASE_CORE_UTIL_SPAN_H
4#define IMT_BASE_CORE_UTIL_SPAN_H
24template<
typename ElementType>
37 constexpr Span() noexcept :
46 constexpr Span(ElementType*
const pFirstElement,
size_t const elementCount) noexcept :
47 m_pFirstElement {pFirstElement},
48 m_elementCount {elementCount} {
56 constexpr Span(ElementType& firstElement,
size_t const elementCount) noexcept :
57 Span {&firstElement, elementCount} {
67 template<
typename ArrayElementType,
size_t ArraySize,
typename = std::enable_if_t<std::is_convertible<ArrayElementType (*)[], ElementType (*)[]>::value>>
68 constexpr Span(std::array<ArrayElementType, ArraySize>& array) noexcept :
79 template<
typename ArrayElementType,
size_t ArraySize,
typename = std::enable_if_t<std::is_convertible<ArrayElementType const (*)[], ElementType (*)[]>::value>>
80 constexpr Span(std::array<ArrayElementType, ArraySize>
const& array) noexcept :
92 template<
typename ArrayElementType,
size_t ArraySize,
typename = std::enable_if_t<std::is_convertible<ArrayElementType (*)[], ElementType (*)[]>::value>>
93 constexpr Span(std::array<ArrayElementType, ArraySize>& array,
size_t const elementCount) noexcept :
94 Span {array.
data(), std::min(elementCount, array.size())} {
105 template<
typename ArrayElementType,
size_t ArraySize,
typename = std::enable_if_t<std::is_convertible<ArrayElementType const (*)[], ElementType (*)[]>::value>>
106 constexpr Span(std::array<ArrayElementType, ArraySize>
const& array,
size_t const elementCount) noexcept :
107 Span {array.
data(), std::min(elementCount, array.size())} {
114 template<
typename OtherElementType,
typename = std::enable_if_t<std::is_convertible<OtherElementType (*)[], ElementType (*)[]>::value>>
122 constexpr ElementType*
data() const noexcept {
123 return m_pFirstElement;
130 return m_pFirstElement;
136 ElementType*
end() noexcept {
137 return m_pFirstElement + m_elementCount;
143 ElementType
const*
cbegin() const noexcept {
144 return m_pFirstElement;
150 ElementType
const*
cend() const noexcept {
151 return m_pFirstElement + m_elementCount;
157 constexpr size_t size() const noexcept {
158 return m_elementCount;
166 constexpr ElementType&
operator[](
size_t const idx)
const noexcept {
167 return *(m_pFirstElement + idx);
174 constexpr bool empty() const noexcept {
175 return m_elementCount == 0U;
180 ElementType* m_pFirstElement;
181 size_t m_elementCount;
185#if __cplusplus >= 201703L
187template<
typename ElementType,
size_t ArraySize>
188Span(std::array<ElementType, ArraySize>&) -> Span<ElementType>;
190template<
typename ElementType,
size_t ArraySize>
191Span(std::array<ElementType, ArraySize>
const&) -> Span<ElementType const>;
193template<
typename ArrayElementType,
size_t ArraySize>
194Span(std::array<ArrayElementType, ArraySize>& array,
size_t const elementCount) -> Span<ArrayElementType>;
196template<
typename ArrayElementType,
size_t ArraySize>
197Span(std::array<ArrayElementType, ArraySize>
const& array,
size_t const elementCount) -> Span<ArrayElementType const>;
This template class provides a small wrapper around a data buffer.
constexpr ElementType * data() const noexcept
ElementType SpanElementType
The element type used by the span template instance.
constexpr Span(ElementType &firstElement, size_t const elementCount) noexcept
Constructs a span from a reference to the first element and the number of elements.
constexpr Span(ElementType *const pFirstElement, size_t const elementCount) noexcept
Constructs a span from a pointer to the first element and the number of elements.
constexpr bool empty() const noexcept
Checks if the span is empty.
constexpr Span(std::array< ArrayElementType, ArraySize > &array) noexcept
Constructs a span from an array reference.
constexpr Span(std::array< ArrayElementType, ArraySize > const &array) noexcept
Constructs a span from a const array reference.
ElementType const * cend() const noexcept
ElementType * begin() noexcept
constexpr Span(Span< OtherElementType > const &other) noexcept
Copy constructor from different cv-qualified ElementType.
ElementType * end() noexcept
constexpr Span(std::array< ArrayElementType, ArraySize > &array, size_t const elementCount) noexcept
Constructs a span from an array reference with an additional element count.
constexpr Span() noexcept
Constructs an empty span.
constexpr size_t size() const noexcept
constexpr ElementType & operator[](size_t const idx) const noexcept
Indexing operator.
constexpr Span(std::array< ArrayElementType, ArraySize > const &array, size_t const elementCount) noexcept
Constructs a span from an const array reference with an additional element count.
ElementType const * cbegin() const noexcept
This is a application specific file which is used to configure Imt.Base.Core.Math.