| 113 | static bool isAbsoluteNative(StringSpan path) { return findRootLength(path) > 0; } |
| 114 | |
| 115 | static Result assignNativeSlice(StringPath& output, const native_char_t* text, size_t length) |
| 116 | { |
| 117 | SC_TRY(output.assign(nativeSpan(text, length))); |
| 118 | return Result(true); |
| 119 | } |
| 120 | |
| 121 | static void trimTrailingSeparators(StringPath& path) |
| 122 | { |
no test coverage detected