Lines Matching refs:i_
944 explicit MoveOnly(int i) : i_(i) {}
950 bool operator==(const MoveOnly& other) const { return i_ == other.i_; }
951 bool operator!=(const MoveOnly& other) const { return i_ != other.i_; }
952 bool operator<(const MoveOnly& other) const { return i_ < other.i_; }
953 bool operator<=(const MoveOnly& other) const { return i_ <= other.i_; }
954 bool operator>(const MoveOnly& other) const { return i_ > other.i_; }
955 bool operator>=(const MoveOnly& other) const { return i_ >= other.i_; }
958 int i_;