Lines Matching refs:n_
23 n_(0)
31 n_(n)
36 return first_[n_ % size_];
41 return first_[(n_ + n) % size_];
46 ++n_;
57 n_ += n;
63 --n_;
74 n_ -= n;
81 return lhs.first_ == rhs.first_ && lhs.n_ == rhs.n_;
91 return lhs.first_ == rhs.first_ && lhs.n_ < rhs.n_;
127 return lhs.n_ - rhs.n_;
133 difference_type n_;
149 n_(0)
155 n_(n)
158 constexpr char operator*() const noexcept { return first_[n_ % size_]; }
161 n_ += i;
166 return n_ - other.n_;
172 difference_type n_;