Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: To || or not to or and why.

by Abigail-II (Bishop)
on Sep 15, 2003 at 22:12 UTC ( [id://291670]=note: print w/replies, xml ) Need Help??

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];
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://291670]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-20 03:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found