Help for this page

Select Code to Download


  1. or download this
    if ((($before eq 'A' || $before eq 'B') && $after eq 'Z')
        || ($before eq 'Z' && ($after eq 'A' || $after eq 'B')))
    {
        # change from A|B <=> Z
    }
    
  2. or download this
    if ($before eq 'Z' xor $after eq 'Z')
    {
        # change from A|B <=> Z
    }
    
  3. or download this
    if (($before ne 'Z' && $after eq 'Z')
        || ($before eq 'Z' && $after ne 'Z'))
    ...
    {
        # change from A|B <=> Z
    }
    
  4. or download this
    /usr/local/lib/perl/5.6.1/DateTime.pm:    if ( $self->{tz}->is_floatin
    +g xor $was_floating )