| 11493 | } |
| 11494 | } |
| 11495 | auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef { |
| 11496 | if( start < m_size ) |
| 11497 | return StringRef( m_start+start, size ); |
| 11498 | else |
| 11499 | return StringRef(); |
| 11500 | } |
| 11501 | auto StringRef::operator == ( StringRef const& other ) const noexcept -> bool { |
| 11502 | return |
| 11503 | size() == other.size() && |
no test coverage detected