Help for this page

Select Code to Download


  1. or download this
    use Date::Calc qw( Add_Delta_DHMS Date_to_Days );
    
    ...
      if ($diff[0] > 0 || $diff[0] == 0 && $diff[1] >= 0) {
          ...
      }
    
  2. or download this
    sub Compare_Vectors {
        my( $x, $y )= @_;
    ...
        }
        return map $sign*$_, Date::Calc::Delta_YMDHMS( @$x, @$y );
    }