Help for this page

Select Code to Download


  1. or download this
    if ( ($ret->{val1}||"") eq ($this->{val1}||"") ) ...
    
  2. or download this
    if ( defined($ret->{val1}) == defined($this->{val1}) &&
         ($ret->{val1}||"") eq ($this->{val1}||"") ) ...