| 47 | // path.decompose |
| 48 | |
| 49 | string_view_t path::__root_name() const { |
| 50 | auto PP = PathParser::CreateBegin(__pn_); |
| 51 | if (PP.State_ == PathParser::PS_InRootName) |
| 52 | return *PP; |
| 53 | return {}; |
| 54 | } |
| 55 | |
| 56 | string_view_t path::__root_directory() const { |
| 57 | auto PP = PathParser::CreateBegin(__pn_); |