mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
AK: Add a const iterator for COWVector
This commit is contained in:
committed by
Andreas Kling
parent
59a4203cf0
commit
5876417357
@@ -152,6 +152,9 @@ public:
|
||||
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:
|
||||
void copy()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user