mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
AK: Add DisjointChunkc::ensure_capacity
This commit is contained in:
parent
4574a58f6f
commit
3a177b9209
1 changed files with 5 additions and 0 deletions
|
@ -200,6 +200,11 @@ public:
|
|||
ChunkType const& first_chunk() const { return m_chunks.first(); }
|
||||
ChunkType const& last_chunk() const { return m_chunks.last(); }
|
||||
|
||||
void ensure_capacity(size_t needed_capacity)
|
||||
{
|
||||
m_chunks.ensure_capacity(needed_capacity);
|
||||
}
|
||||
|
||||
void insert(size_t index, T value)
|
||||
{
|
||||
if (m_chunks.size() == 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue