A template for a producer that handles possibly empty list of comma-separated values.
More...
template<typename Container, typename Element_Producer>
class restinio::http_field_parsers::impl::maybe_empty_comma_separated_list_producer_t< Container, Element_Producer >
A template for a producer that handles possibly empty list of comma-separated values.
That producer handles the following rule:
#element => [ ( "," / element ) *( OWS "," [ OWS element ] ) ]
See: https://tools.ietf.org/html/rfc7230 (section "7. ABNF List Extension: #rule")
- Template Parameters
-
Container | the type of container to be produced. |
Element_Producer | the type of the producer of a single item. |
- Since
- v.0.6.1
Definition at line 1380 of file basics.hpp.