Vince's CSV Parser
Loading...
Searching...
No Matches
csv::internals::has_to_sv_range Concept Reference

Concept definition

template<typename T>
concept csv::internals::has_to_sv_range = requires(const std::remove_reference_t<T>& value) {
{ value.to_sv_range() } -> std::ranges::input_range;
requires std::convertible_to<
std::ranges::range_reference_t<decltype(value.to_sv_range())>,
>;
}
std::string_view string_view
The string_view class used by this library.
Definition common.hpp:174

Detailed Description

Definition at line 352 of file common.hpp.