Sane C++ Libraries
C++ Platform Abstraction Libraries
SC::SmallBuffer< N > Struct Template Reference

A SC::Buffer with a dedicated custom inline buffer to avoid heap allocation. More...

#include <Buffer.h>

Inheritance diagram for SC::SmallBuffer< N >:
SC::Buffer SC::Segment< detail::SegmentBuffer >

Public Member Functions

 SmallBuffer (SegmentAllocator allocator=SegmentAllocator::Global) noexcept
 
 SmallBuffer (const Buffer &other) noexcept
 
 SmallBuffer (Buffer &&other) noexcept
 
Bufferoperator= (const Buffer &other) noexcept
 
Bufferoperator= (Buffer &&other) noexcept
 
 SmallBuffer (const SmallBuffer &other) noexcept
 
 SmallBuffer (SmallBuffer &&other) noexcept
 
SmallBufferoperator= (const SmallBuffer &other) noexcept
 
SmallBufferoperator= (SmallBuffer &&other) noexcept
 
- Public Member Functions inherited from SC::Buffer
 Segment (uint32_t capacityInBytes, SegmentAllocator allocator=SegmentAllocator::Global) noexcept
 
 Segment () noexcept
 
 Segment (Segment &&other) noexcept
 
 Segment (const Segment &other) noexcept
 
template<typename U = T>
 Segment (Span< const U > span) noexcept
 
 Segment (std::initializer_list< T > list) noexcept
 

Protected Member Functions

 SmallBuffer (int num, SegmentAllocator allocator)
 

Detailed Description

template<int N>
struct SC::SmallBuffer< N >

A SC::Buffer with a dedicated custom inline buffer to avoid heap allocation.

Note
You can pass a SmallBuffer everywhere a reference to a Buffer is requested. SC::Buffer will fallback to heap allocation once the inline buffer size is exceeded.

The documentation for this struct was generated from the following file: