11 struct ParsePartialFunction {
12 template<concepts::IntoParserContext U,
typename Context = meta::AsParserContext<U>>
13 requires(concepts::Parsable<T, Context>)
14 constexpr auto operator()(U&& input)
const {
17 return parser.parse(context);
23constexpr inline auto parse_partial = detail::ParsePartialFunction<T> {};
Definition code_point_parser.h:10
constexpr auto create_parser
Definition create_parser.h:55
constexpr auto parse_partial
Definition parse_partial.h:23
constexpr auto into_parser_context
Definition into_parser_context.h:21
Definition any_storable.h:9