Help for this page

Select Code to Download


  1. or download this
    sub isEmpty
    {
      return defined $_[0] ? !length($_[0]) : 1;
    }
    
  2. or download this
    sub isEmpty
    {
      defined $_[0] or return 1;
      return !($_[0] =~ tr|||c);
    }
    
  3. or download this
    sub isEmpty
    {
      return !(defined $_[0] && $_[0] =~ m/./);
    }