template<typename Context>
concept path_range = std::ranges::input_range<Context> and
std::convertible_to<std::ranges::range_value_t<std::remove_cvref_t<Context>>, std::filesystem::path> and
not std::convertible_to<Context, std::filesystem::path>
Definition path_location_intf.hpp:37