4#include "../Foundation/Segment.h"
14struct SegmentBuffer :
public SegmentTrivial<char>,
public SegmentSelfRelativePointer<char>
16 static constexpr bool IsArray =
false;
29 using Segment::Segment;
38 SmallBuffer(SegmentAllocator allocator = SegmentAllocator::Global) noexcept :
Buffer(N, allocator) {}
41 Buffer& operator=(
const Buffer& other)
noexcept {
return Buffer::operator=(other); }
42 Buffer& operator=(
Buffer&& other)
noexcept {
return Buffer::operator=(
move(other)); }
52 SmallBuffer(
int num, SegmentAllocator allocator) :
Buffer(N, allocator) { (void)num; }
59using BufferTL = detail::SegmentCustom<Buffer, Buffer, 0, SegmentAllocator::ThreadLocal>;
61using SmallBufferTL = detail::SegmentCustom<SmallBuffer<N>,
Buffer, N, SegmentAllocator::ThreadLocal>;
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
constexpr T && move(T &value)
Converts an lvalue to an rvalue reference.
Definition: Compiler.h:269
unsigned long long uint64_t
Platform independent (8) bytes unsigned int.
Definition: PrimitiveTypes.h:42
An heap allocated byte buffer that can optionally use an inline buffer.
Definition: Buffer.h:28
A slice of contiguous memory, prefixed by and header containing size and capacity.
Definition: Segment.h:113
A SC::Buffer with a dedicated custom inline buffer to avoid heap allocation.
Definition: Buffer.h:37