Lines Matching defs:i_
945 explicit MoveOnly(int i) : i_(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_; }
956 bool operator>=(const MoveOnly& other) const { return i_ >= other.i_; }
959 int i_;