Ring buffer: Add a std::initializer_list constructor
This commit is contained in:
@@ -201,20 +201,26 @@ public:
|
||||
|
||||
ring_buffer() = default;
|
||||
|
||||
ring_buffer(const ring_buffer &other)
|
||||
template <typename U>
|
||||
void construct_from(const U &other)
|
||||
{
|
||||
if (!other.empty()) {
|
||||
uint32 cap = round_up_size(other.count);
|
||||
uint32 cap = round_up_size((uint32)other.size());
|
||||
this->data.reset(MallocT<byte>(cap * sizeof(T)));
|
||||
this->mask = cap - 1;
|
||||
this->head = 0;
|
||||
this->count = other.size();
|
||||
this->count = (uint32)other.size();
|
||||
byte *ptr = this->data.get();
|
||||
for (const T &item : other) {
|
||||
new (ptr) T(item);
|
||||
ptr += sizeof(T);
|
||||
}
|
||||
}
|
||||
|
||||
ring_buffer(const ring_buffer &other)
|
||||
{
|
||||
if (!other.empty()) {
|
||||
this->construct_from(other);
|
||||
}
|
||||
}
|
||||
|
||||
ring_buffer(ring_buffer &&other)
|
||||
@@ -225,6 +231,13 @@ public:
|
||||
std::swap(this->mask, other.mask);
|
||||
}
|
||||
|
||||
ring_buffer(std::initializer_list<T> init)
|
||||
{
|
||||
if (init.size() > 0) {
|
||||
this->construct_from(init);
|
||||
}
|
||||
}
|
||||
|
||||
ring_buffer& operator =(const ring_buffer &other)
|
||||
{
|
||||
if (&other != this) {
|
||||
|
Reference in New Issue
Block a user