| 11 | namespace common { |
| 12 | |
| 13 | StringView::Char StringView::at(Size index) const { |
| 14 | if (index >= m_size) |
| 15 | throw std::out_of_range("StringView::at"); |
| 16 | return (*this)[index]; |
| 17 | } |
| 18 | |
| 19 | bool StringView::operator==(const StringView &other) const { |
| 20 | if (m_size != other.m_size) |
no outgoing calls