4#include "../Containers/Vector.h"
10template <
typename T,
int N>
11struct ArrayVTable :
public ObjectVTable<T>
13 static constexpr bool IsArray =
true;
15 T* data() {
return items; }
16 const T* data()
const {
return items; }
18 T* getInlineData() {
return items; }
19 uint32_t getInlineCapacity() {
return header.capacityBytes; }
21 static constexpr bool isInline() {
return true; }
23 ArrayVTable(
uint32_t capacity = 0, SegmentAllocator allocator = SegmentAllocator::Global)
24 : header(capacity, allocator)
49template <
typename T,
int N>
80 [[nodiscard]]
bool contains(
const U& value,
size_t* index =
nullptr)
const
90 template <
typename Lambda>
91 [[nodiscard]]
bool find(Lambda&& lambda,
size_t* index =
nullptr)
const
100 template <
typename Lambda>
103 T* itBeg = Parent::begin();
104 T* itEnd = Parent::end();
107 const size_t numBytes =
static_cast<size_t>(itEnd - it) *
sizeof(T);
108 const size_t offBytes =
static_cast<size_t>(it - itBeg) *
sizeof(T);
109 detail::VectorVTable<T>::destruct(Parent::getData(), offBytes, numBytes);
110 Parent::header.sizeBytes -=
static_cast<decltype(Parent::header.sizeBytes)
>(numBytes);
118 template <
typename U>
119 [[nodiscard]]
bool remove(
const U& value)
121 return removeAll([&](
auto& item) {
return item == value; });
ForwardIterator removeIf(ForwardIterator first, ForwardIterator last, UnaryPredicate &&predicate)
Removes all items in the given range, satisfying the given predicate.
Definition: AlgorithmRemove.h:22
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
#define SC_COMPILER_EXTERN
Define compiler-specific export macros for DLL visibility.
Definition: Compiler.h:74
#define SC_ASSERT_RELEASE(e)
Assert expression e to be true.
Definition: Assert.h:66
constexpr T && move(T &value)
Converts an lvalue to an rvalue reference.
Definition: Compiler.h:269
char native_char_t
The native char for the platform (wchar_t (4 bytes) on Windows, char (1 byte) everywhere else )
Definition: PrimitiveTypes.h:34
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
A contiguous sequence of elements kept inside its inline storage.
Definition: Array.h:51
bool removeAll(Lambda &&criteria)
Removes all items matching criteria given by Lambda.
Definition: Array.h:101
bool remove(const U &value)
Removes all values equal to value
Definition: Array.h:119
bool find(Lambda &&lambda, size_t *index=nullptr) const
Finds the first item in array matching criteria given by the lambda.
Definition: Array.h:91
bool contains(const U &value, size_t *index=nullptr) const
Check if the current array contains a given value.
Definition: Array.h:80
A slice of contiguous memory, prefixed by and header containing size and capacity.
Definition: Segment.h:113
bool appendMove(Segment< VTable2 > &&other) noexcept
bool append(Span< const U > span) noexcept
bool assignMove(Segment< VTable2 > &&other) noexcept
bool assign(Span< const U > span) noexcept
Span< const T > toSpanConst() const noexcept SC_LANGUAGE_LIFETIME_BOUND
Definition: Segment.h:206
View over a contiguous sequence of items (pointer + size in elements).
Definition: Span.h:32