Home
last modified time | relevance | path

Searched defs:exact_iterator (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/spirit/home/qi/directive/
Drepeat.hpp82 struct exact_iterator // handles repeat(exact)[p] struct
84 exact_iterator(T const exact_) in exact_iterator() argument
87 typedef T type;
88 T start() const { return 0; } in start()
89 bool got_max(T i) const { return i >= exact; } in got_max()
90 bool got_min(T i) const { return i >= exact; } in got_min()
92 T const exact;
/third_party/boost/boost/spirit/home/karma/directive/
Drepeat.hpp82 struct exact_iterator struct
84 exact_iterator(T const exact) in exact_iterator() argument
87 typedef T type;
88 T start() const { return 0; } in start()
89 bool got_max(T i) const { return i >= exact; } in got_max()
90 bool got_min(T i) const { return i >= exact; } in got_min()
92 T const exact;