Searched refs:CountIter (Results 1 – 2 of 2) sorted by relevance
193 class CountIter {201 CountIter() : count_(0) {} in CountIter() function202 explicit CountIter(size_t count) : count_(count) {} in CountIter() function203 CountIter& operator++() {207 CountIter operator++(int) {210 return CountIter(ret);212 bool operator==(const CountIter& other) const {215 bool operator!=(const CountIter& other) const {228 static inline IterationRange<ZipLeftIter<Iter, CountIter>> ZipCount(IterationRange<Iter> iter) { in ZipCount()229 return IterationRange(ZipLeftIter(iter.begin(), CountIter(0)), in ZipCount()[all …]
2176 using HConstEnvInputRef = TransformIterator<CountIter, EnvInputSelector>;2178 IterationRange<CountIter> range(Range(Size())); in GetEnvInputs()