Help for this page

Select Code to Download


  1. or download this
    if ($obj1->compare($obj2)) {
      # ...
    }
    
  2. or download this
    use overload '==' => \&compare;
    
  3. or download this
    if ($obj1 == $obj2) {
      # ...
    }