#pragma once
#include <stddef.h>
namespace sprawl
{
namespace collections
{
struct Fill;
struct Capacity;
}
}
struct sprawl::collections::Fill
{
explicit Fill(size_t count_)
: count(count_)
{
//
}
size_t count;
};
struct sprawl::collections::Capacity
{
explicit Capacity(size_t count_)
: count(count_)
{
//
}
size_t count;
};
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #1 | 23398 | ququlala | "Forking branch Mainline of shadauxcat-libsprawl to ququlala-libsprawl." | ||
| //guest/ShadauxCat/Sprawl/Mainline/collections/array/Helpers.hpp | |||||
| #1 | 14100 | ShadauxCat |
-Added Deque implementation using circular buffer. -Fixed List::Insert() and ForwardList::Insert() inserting after the iterator instead of before it. Adjusted the unit tests to compensate. -Fixed a couple of small vector bugs #review-14101 |
||