| 145 | } |
| 146 | |
| 147 | inline constexpr bool startsWith(std::string_view Value, |
| 148 | std::string_view Prefix) noexcept { |
| 149 | return Value.size() >= Prefix.size() && |
| 150 | Value.substr(0, Prefix.size()) == Prefix; |
| 151 | } |
| 152 | |
| 153 | std::filesystem::path uniquePath(const std::filesystem::path Model) noexcept { |
| 154 | using size_type = std::filesystem::path::string_type::size_type; |
no test coverage detected