Help for this page

Select Code to Download


  1. or download this
    my $RootDirectoryCanidate= shift() or return undef();
    my $RootDirectoryCanidate= shift() || return undef();
    
  2. or download this
    sub method {
        return if @_ && !defined $_ [0];
        my $root_directory_candidate = shift;
        ...
    }
    
  3. or download this
        return unless defined $_ [0];