Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit 286f4ed15b.
PrevUpHomeNext

grammar::range_rule

Match a repeating number of elements.

template<
    class Rule>
constexpr implementation-defined
range_rule(
    Rule next,
    std::size_t N = 0,
    std::size_t M = std::size_t(-1));
  » more...

template<
    class Rule1,
    class Rule2>
constexpr implementation-defined
range_rule(
    Rule1 first,
    Rule2 next,
    std::size_t N = 0,
    std::size_t M = std::size_t(-1));
  » more...

PrevUpHomeNext