mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00: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
Notes:
sideshowbarker
2024-07-19 11:20:17 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/870be9d71ec
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