Lines Matching defs:other
72 public function orSet(IntervalSet $other) : self
77 $result->addSet($other);
216 // next to each other, make a single larger interval
257 public function addSet(IntervalSet $other) : self
259 if ($other->intervals !== null) {
260 foreach ($other->intervals as $i) {
492 public function equals(object $other) : bool
494 if ($this === $other) {
498 if (!$other instanceof self) {
502 return $this->readOnly === $other->readOnly
503 && Equality::equals($this->intervals, $other->intervals);