mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
AK: Add Vector::take(index)
This removes an item from the vector and returns it.
This commit is contained in:
parent
d6f9349f15
commit
870be9d71e
1 changed files with 7 additions and 0 deletions
|
@ -263,6 +263,13 @@ public:
|
|||
return value;
|
||||
}
|
||||
|
||||
T take(int index)
|
||||
{
|
||||
T value = move(at(index));
|
||||
remove(index);
|
||||
return value;
|
||||
}
|
||||
|
||||
void remove(int index)
|
||||
{
|
||||
ASSERT(index < m_size);
|
||||
|
|
Loading…
Reference in a new issue