mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:47:34 +00:00
AK: Add last() utility function to Span
This commit is contained in:
parent
77add584fa
commit
0f2c1f804e
1 changed files with 10 additions and 0 deletions
10
AK/Span.h
10
AK/Span.h
|
@ -212,6 +212,16 @@ public:
|
|||
return this->m_values[index];
|
||||
}
|
||||
|
||||
[[nodiscard]] ALWAYS_INLINE constexpr T const& last() const
|
||||
{
|
||||
return this->at(this->size() - 1);
|
||||
}
|
||||
|
||||
[[nodiscard]] ALWAYS_INLINE constexpr T& last()
|
||||
{
|
||||
return this->at(this->size() - 1);
|
||||
}
|
||||
|
||||
[[nodiscard]] ALWAYS_INLINE constexpr T const& operator[](size_t index) const
|
||||
{
|
||||
return at(index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue