boost::urls::grammar::range_rule
Match a repeating number of elements
Synopsis
template<
class Rule1,
class Rule2>
constexpr
_implementation‐defined_
range_rule(
Rule1 const& first,
Rule2 const& next,
std::size_t N = 0,
std::size_t M = std::size_t(‐1)) noexcept;
Description
Two rules are used for match. The rule `first` is used for matching the first element, while the `next` rule is used to match every subsequent element.
Normally when the rule returns an error, the range ends and the input is rewound to one past the last character that matched successfully. However, if the rule returns the special value error::end_of_range , the input is not rewound. This allows for rules which consume input without producing elements in the range. For example, to relax the grammar for a comma‐delimited list by allowing extra commas in between elements.
using value_type = range< typename Rule::value_type >;
Rules are used with the function
parse .
// range = [ token ] *( "," token )
system::result< range< core::string_view > > rv = parse( "whiskey,tango,foxtrot",
range_rule(
token_rule( alpha_chars ), // first
tuple_rule( // next
squelch( delim_rule(',') ),
token_rule( alpha_chars ) ) ) );
range = <1>*<1>first
/ first <N-1>*<M-1>next
Parameters
Name | Description |
---|---|
first |
The rule to use for matching the first element&period; If this rule returns an error, the range is empty&period; |
next |
The rule to use for matching each subsequent element&period; The range extends until this rule returns an error&period; |
N |
The minimum number of elements for the range to be valid&period; If omitted, this defaults to zero&period; |
M |
The maximum number of elements for the range to be valid&period; If omitted, this defaults to unlimited&period; |
See Also
alpha_chars , delim_rule , error::end_of_range , parse , range , tuple_rule , squelch .
Created with MrDocs