| 146 | } |
| 147 | |
| 148 | std::string Path::getFirstComponent() const { |
| 149 | if (_components.empty()) { |
| 150 | return std::string(); |
| 151 | } |
| 152 | return _components[0]; |
| 153 | } |
| 154 | |
| 155 | std::string_view Path::getLastComponent() const { |
| 156 | if (_components.empty()) { |
no test coverage detected