Lines Matching defs:other
432 bool operator==(const Edge& other) { return input_ptr_ == other.input_ptr_; }
433 bool operator!=(const Edge& other) { return !(*this == other); }
496 iterator(const iterator& other) = default;
499 bool operator==(const iterator& other) const {
500 return input_ptr_ == other.input_ptr_;
502 bool operator!=(const iterator& other) const { return !(*this == other); }
517 difference_type operator-(const iterator& other) const {
518 return input_ptr_ - other.input_ptr_;
554 const_iterator(const const_iterator& other) = default;
557 bool operator==(const const_iterator& other) const {
558 return input_ptr_ == other.input_ptr_;
560 bool operator!=(const const_iterator& other) const {
561 return !(*this == other);
575 difference_type operator-(const const_iterator& other) const {
576 return input_ptr_ - other.input_ptr_;
603 iterator(const iterator& other) = default;
606 bool operator==(const iterator& other) const {
607 return current_ == other.current_;
609 bool operator!=(const iterator& other) const { return !(*this == other); }
651 bool operator==(const const_iterator& other) const {
652 return other.current_ == current_;
654 bool operator!=(const const_iterator& other) const {
655 return other.current_ != current_;