mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +00:00
AK: Add FixedArray::data()
This commit is contained in:
parent
61a6ae038e
commit
ddefb95b21
1 changed files with 9 additions and 0 deletions
|
@ -71,6 +71,15 @@ public:
|
|||
|
||||
size_t size() const { return m_size; }
|
||||
|
||||
T* data()
|
||||
{
|
||||
return m_elements;
|
||||
}
|
||||
const T* data() const
|
||||
{
|
||||
return m_elements;
|
||||
}
|
||||
|
||||
T& operator[](size_t index)
|
||||
{
|
||||
ASSERT(index < m_size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue