mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-05 17:16:04 +00:00
AK: Add a const iterator for COWVector
This commit is contained in:
parent
59a4203cf0
commit
5876417357
Notes:
github-actions[bot]
2025-01-17 09:35:32 +00:00
Author: https://github.com/alimpfard
Commit: 5876417357
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3261
1 changed files with 3 additions and 0 deletions
|
@ -152,6 +152,9 @@ public:
|
||||||
return m_detail->m_members.last();
|
return m_detail->m_members.last();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto begin() const { return m_detail->m_members.begin(); }
|
||||||
|
auto end() const { return m_detail->m_members.end(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void copy()
|
void copy()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue