| 64 | static size_t nativeLength(StringSpan view) { return view.sizeInBytes() / sizeof(native_char_t); } |
| 65 | |
| 66 | static bool isSeparator(native_char_t ch) |
| 67 | { |
| 68 | return ch == static_cast<native_char_t>('/') || ch == static_cast<native_char_t>('\\'); |
| 69 | } |
| 70 | |
| 71 | #if SC_PLATFORM_WINDOWS |
| 72 | static bool isAsciiAlpha(native_char_t ch) |
no outgoing calls
no test coverage detected