4#include "../Foundation/InitializerList.h"
5#include "../Foundation/LibC.h"
6#include "../Foundation/TypeTraits.h"
10template <
typename Type>
18template<
typename U>
struct SpanSizeOfType {
static constexpr auto size =
sizeof(U); };
19template<>
struct SpanSizeOfType<void> {
static constexpr auto size = 1; };
20template<>
struct SpanSizeOfType<const void> {
static constexpr auto size = 1; };
30template <
typename Type>
36 using VoidType =
typename TypeTraits::SameConstnessAs<Type, void>::type;
42 SizeType sizeElements;
45 template <
size_t N,
typename U = Type, EnableNotVo
id<U> = true>
46 constexpr Span(U (&itemsArray)[N]) : items(itemsArray), sizeElements(N)
50 constexpr Span() : items(nullptr), sizeElements(0) {}
59 template <
typename U = Type>
60 constexpr Span(TypeIfNotVoid<U>& type) : items(&type), sizeElements(1)
65 template <
typename U = Type>
66 constexpr Span(std::initializer_list<TypeIfNotVoid<U>> list) : items(nullptr), sizeElements(0)
70 sizeElements = list.size();
75 template <
typename U = Type>
operator Span< TypeIfNotVoid<U>>() {
return {items, sizeElements}; }
76 operator Span<const void>()
const {
return Span<const void>(items, sizeElements * detail::SpanSizeOfType<Type>::size); }
77 operator Span<void>() {
return Span<void>(items, sizeElements * detail::SpanSizeOfType<Type>::size); }
87 return {
reinterpret_cast<Type*
>(&value),
sizeof(T) / detail::SpanSizeOfType<Type>::size};
96 return Span(
reinterpret_cast<Type*
>(rawMemory),
sizeInBytes / detail::SpanSizeOfType<Type>::size);
100 template <
typename T>
107 template <
typename T>
115 [[nodiscard]]
constexpr const Type*
begin()
const {
return items; }
119 [[nodiscard]]
constexpr const Type*
end()
const {
return items + sizeElements; }
123 [[nodiscard]]
constexpr const Type*
data()
const {
return items; }
127 [[nodiscard]]
constexpr Type*
begin() {
return items; }
131 [[nodiscard]]
constexpr Type*
end() {
return items + sizeElements; }
135 [[nodiscard]]
constexpr Type*
data() {
return items; }
143 [[nodiscard]]
constexpr SizeType
sizeInBytes()
const {
return sizeElements * detail::SpanSizeOfType<Type>::size; }
151 [[nodiscard]]
constexpr bool sliceStart(SizeType offsetInElements,
Span& destination)
const
168 [[nodiscard]]
constexpr bool sliceStartLength(SizeType offsetInElements, SizeType lengthInElements,
169 Span& destination)
const
173 destination =
Span(items + offsetInElements, lengthInElements);
184 const auto diff = other.items - items;
185 if (diff < 0 or
static_cast<SizeType
>(diff) >
sizeInBytes())
191 output =
Span(items,
static_cast<SizeType
>(diff) / detail::SpanSizeOfType<Type>::size);
198 [[nodiscard]]
constexpr bool empty()
const {
return sizeElements == 0; }
206 template <
typename U>
207 [[nodiscard]]
constexpr bool contains(
const U& value, SizeType* index =
nullptr)
const
209 return find([&](
auto& current) {
return current == value; }, index);
217 template <
typename Lambda>
218 [[nodiscard]]
constexpr bool find(Lambda&& lambda, SizeType* index =
nullptr)
const
220 for (SizeType idx = 0; idx < sizeElements; ++idx)
222 if (lambda(items[idx]))
235 template <
typename U = Type> TypeIfNotVoid<U>& operator[](SizeType idx) {
return items[idx]; }
236 template <
typename U = Type>
const TypeIfNotVoid<U>& operator[](SizeType idx)
const {
return items[idx]; }
240 template <
typename IntType>
243 if (idx >= 0 and idx <
static_cast<IntType
>(sizeElements))
249 template <
typename IntType>
250 const Type*
get(IntType idx)
const
252 if (idx >= 0 and idx <
static_cast<IntType
>(sizeElements))
258 template <
typename U>
269 template <
typename U>
280#if SC_PLATFORM_WINDOWS
281#define SC_NATIVE_STR(str) L##str
283#define SC_NATIVE_STR(str) str
290 constexpr SpanStringView(
const char*
string,
size_t stringLength) : text(
string, stringLength) {}
292 constexpr SpanStringView(
const char (&charLiteral)[N]) : text(charLiteral)
299 if (N < text.sizeInElements() + 1)
301 ::memcpy(&buffer[0], text.data(), text.sizeInElements());
313 constexpr SpanString(
char (&buffer)[N]) : text(buffer)
unsigned long size_t
Platform independent unsigned size type.
Definition: PrimitiveTypes.h:56
View over a contiguous sequence of items (pointer + size in elements).
Definition: Span.h:32
static Span< Type > reinterpret_object(T &value)
Constructs a Span reinterpreting memory pointed by object of type T as a type Type
Definition: Span.h:85
constexpr bool find(Lambda &&lambda, SizeType *index=nullptr) const
Finds the first item in span matching criteria given by the lambda.
Definition: Span.h:218
constexpr const Type * data() const
Returns pointer to first element of the span.
Definition: Span.h:123
static Span< Type > reinterpret_bytes(VoidType *rawMemory, SizeType sizeInBytes)
Construct a span reinterpreting raw memory (void* or const void*) to Type or const Type
Definition: Span.h:94
const Type * get(IntType idx) const
Gets the item at given index or nullptr if index is negative or bigger than size.
Definition: Span.h:250
constexpr SizeType sizeInBytes() const
Size of Span in bytes.
Definition: Span.h:143
bool memcmpWith(const Span< U > other) const
Compares this span with another one byte by byte.
Definition: Span.h:259
Span< T > reinterpret_as_array_of()
Reinterprets the current span as an array of the specified type.
Definition: Span.h:108
constexpr bool sliceStart(SizeType offsetInElements, Span &destination) const
Creates another Span, starting at an offset in elements from current Span, until end.
Definition: Span.h:151
constexpr bool contains(const U &value, SizeType *index=nullptr) const
Check if the current span contains a given value.
Definition: Span.h:207
constexpr Span()
Builds an empty Span.
Definition: Span.h:50
constexpr Type * begin()
Returns pointer to first element of the span.
Definition: Span.h:127
constexpr Type * end()
Returns pointer to one after the last element of the span.
Definition: Span.h:131
constexpr const Type * begin() const
Returns pointer to first element of the span.
Definition: Span.h:115
Type * get(IntType idx)
Gets the item at given index or nullptr if index is negative or bigger than size.
Definition: Span.h:241
constexpr bool sliceStartLength(SizeType offsetInElements, SizeType lengthInElements, Span &destination) const
Creates another Span, starting at an offset in elements from current Span of specified length.
Definition: Span.h:168
bool memcpyTo(Span< U > &other) const
Bitwise copies contents of this Span over another (non-overlapping)
Definition: Span.h:270
constexpr Span(Type *items, SizeType sizeInElements)
Builds a Span from an array.
Definition: Span.h:55
Span< const T > reinterpret_as_array_of() const
Reinterprets the current span as an array of the specified type.
Definition: Span.h:101
constexpr Type * data()
Returns pointer to first element of the span.
Definition: Span.h:135
bool sliceFromStartUntil(Span other, Span &output) const
Creates another Span shorter or equal than the current one such that its end equals other....
Definition: Span.h:182
constexpr bool empty() const
Check if Span is empty.
Definition: Span.h:198
constexpr SizeType sizeInElements() const
Size of Span in elements.
Definition: Span.h:139
constexpr Span(std::initializer_list< TypeIfNotVoid< U > > list)
Span specialized constructor (mainly used for converting const char* to StringView)
Definition: Span.h:66
constexpr const Type * end() const
Returns pointer to one after the last element of the span.
Definition: Span.h:119
constexpr Span(TypeIfNotVoid< U > &type)
Builds a Span from a single object.
Definition: Span.h:60
An writable view over an ASCII string (to avoid including Strings library)
Definition: Span.h:311
An read-only view over an ASCII string (to avoid including Strings library)
Definition: Span.h:288
bool writeNullTerminated(char(&buffer)[N]) const
Writes current string view over a sized char array buffer, adding a null terminator.
Definition: Span.h:297
EnableIf conditionally defines a type if a boolean template parameter is true.
Definition: TypeTraits.h:25
IsSame evaluates to true if the provided types T and U are the same, false otherwise.
Definition: TypeTraits.h:29