19namespace http_field_parsers
22namespace accept_language_details
32 return produce<std::string>(
45 return produce<std::string>(
97 using namespace accept_language_details;
99 return produce< accept_language_value_t >(
100 non_empty_comma_separated_list_p< item_container_t >(
Utilities for parsing values of http-fields.
A class for holding the parsed value of qvalue from RFC7231.
static constexpr qvalue_details::extremum_max_t maximum
The indicator that tells that new qvalue object should have the maximal allowed value.
#define RESTINIO_NODISCARD
RESTINIO_NODISCARD auto maybe(Clauses &&... clauses)
A factory function to create an optional clause.
RESTINIO_NODISCARD expected_t< typename Producer::result_type, parse_error_t > try_parse(string_view_t from, Producer producer)
Perform the parsing of the specified content by using specified value producer.
RESTINIO_NODISCARD auto repeat(std::size_t min_occurences, std::size_t max_occurences, Clauses &&... clauses)
A factory function to create repetitor of subclauses.
RESTINIO_NODISCARD auto as_result() noexcept
A factory function to create a as_result_consumer.
constexpr std::size_t N
A special marker that means infinite repetitions.
RESTINIO_NODISCARD auto to_container()
A factory function to create a to_container_consumer.
RESTINIO_NODISCARD auto symbol_p(char expected) noexcept
A factory function to create a symbol_producer.
RESTINIO_NODISCARD auto alternatives(Clauses &&... clauses)
A factory function to create an alternatives clause.
RESTINIO_NODISCARD auto make_language_tag_p()
RESTINIO_NODISCARD auto make_language_range_p()
RESTINIO_NODISCARD auto alphanum_symbol_p()
A factory for producer of symbol that an ALPHA or DIGIT.
RESTINIO_NODISCARD auto alpha_symbol_p()
A factory for producer of ALPHA symbols.
RESTINIO_NODISCARD auto weight_p() noexcept
A factory function to create a producer for weight parameter.
nonstd::string_view string_view_t
nonstd::expected< T, E > expected_t
std::string language_range
Tools for working with the value of Accept-Language HTTP-field.
item_container_t languages
std::vector< item_t > item_container_t
static RESTINIO_NODISCARD auto make_parser()
A factory function for a parser of Accept-Language value.
static RESTINIO_NODISCARD expected_t< accept_language_value_t, restinio::easy_parser::parse_error_t > try_parse(string_view_t what)
An attempt to parse Accept-Language HTTP-field.