| 54 | } |
| 55 | |
| 56 | string_view_t path::__root_directory() const { |
| 57 | auto PP = PathParser::CreateBegin(__pn_); |
| 58 | if (PP.State_ == PathParser::PS_InRootName) |
| 59 | ++PP; |
| 60 | if (PP.State_ == PathParser::PS_InRootDir) |
| 61 | return *PP; |
| 62 | return {}; |
| 63 | } |
| 64 | |
| 65 | string_view_t path::__root_path_raw() const { |
| 66 | auto PP = PathParser::CreateBegin(__pn_); |
nothing calls this directly
no outgoing calls
no test coverage detected