forked from boostorg/range
Boost.RangeEx merged into Boost.Range
[SVN r60897]
This commit is contained in:
42
doc/reference/adaptors/tokenized.qbk
Normal file
42
doc/reference/adaptors/tokenized.qbk
Normal file
@@ -0,0 +1,42 @@
|
||||
[section:tokenized tokenized]
|
||||
|
||||
[table
|
||||
[[Syntax] [Code]]
|
||||
[
|
||||
[Pipe]
|
||||
[
|
||||
``
|
||||
rng | boost::adaptors::tokenized(regex)
|
||||
rng | boost::adaptors::tokenized(regex, i)
|
||||
rng | boost::adaptors::tokenized(regex, rndRng)
|
||||
rng | boost::adaptors::tokenized(regex, i, flags)
|
||||
rng | boost::adaptors::tokenized(regex, rndRng, flags)
|
||||
``
|
||||
]
|
||||
]
|
||||
[
|
||||
[Function]
|
||||
[
|
||||
``
|
||||
boost::adaptors::tokenize(rng, regex)
|
||||
boost::adaptors::tokenize(rng, regex, i)
|
||||
boost::adaptors::tokenize(rng, regex, rndRng)
|
||||
boost::adaptors::tokenize(rng, regex, i, flags)
|
||||
boost::adaptors::tokenize(rng, regex, rndRng, flags)
|
||||
``
|
||||
]
|
||||
]
|
||||
]
|
||||
|
||||
* [*Precondition:]
|
||||
* Let `T` denote `typename range_value<decltype(rng)>::type`, then `regex` has the type `basic_regex<T>` or is implicitly convertible to one of these types.
|
||||
* `i` has the type `int`.
|
||||
* the `value_type` of `rndRng` is `int`.
|
||||
* `flags` has the type `regex_constants::syntax_option_type`.
|
||||
* [*Returns:] A range whose iterators behave as if they were the original iterators wrapped in `regex_token_iterator`. The first iterator in the range would be constructed by forwarding all the arguments of `tokenized()` to the `regex_token_iterator` constructor.
|
||||
* [*Throws:] Whatever constructing and copying equivalent `regex_token_iterator`s might throw.
|
||||
* [*Range Category:] `RandomAccessRange`
|
||||
|
||||
[endsect]
|
||||
|
||||
|
Reference in New Issue
Block a user