Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/directive/
H A Drepeat.hpp100 struct finite_iterator // handles repeat(min, max)[p] struct
102 finite_iterator(T const min_, T const max_) in finite_iterator() argument
106 typedef T type;
107 T start() const { return 0; } in start()
108 bool got_max(T i) const { return i >= max; } in got_max()
109 bool got_min(T i) const { return i >= min; } in got_min()
111 T const min;
112 T const max;