boost::urls::grammar::parse
Parse a character buffer using a rule
Synopsis
Declared in header <boost/url/grammar/parse.hpp>
template<class Rule>
system::result<Rule::value_type>
parse(
char const*& it,
char const* end,
Rule const& r);
Parameters
Name | Description |
---|---|
it |
A pointer to the start. The caller’s variable is changed to reflect the amount of input consumed. |
end |
A pointer to the end. |
r |
The rule to use |