| 11225 | } |
| 11226 | } |
| 11227 | auto StringRef::substr( size_type start, size_type size ) const noexcept -> StringRef { |
| 11228 | if( start < m_size ) |
| 11229 | return StringRef( m_start+start, size ); |
| 11230 | else |
| 11231 | return StringRef(); |
| 11232 | } |
| 11233 | auto StringRef::operator == ( StringRef const& other ) const noexcept -> bool { |
| 11234 | return |
| 11235 | size() == other.size() && |
no test coverage detected