I was looking at perl code online and came across something I hadn't seen before and can't find out what it's doing (if anything).
if($var) {{
...
}}
Does anyone know what the double curly braces mean?
|
I was looking at perl code online and came across something I hadn't seen before and can't find out what it's doing (if anything).
Does anyone know what the double curly braces mean? |
|||||
|
|
It's a trick usually employed with Probably the author wanted to jump out of the block with |
|||
|
|
There are two statements there. An "if" statement and a bare block. Bare blocks are loops that are executed exactly once.
But being loops, they do influence
( They are usually used to create a lexical scope.
It's unclear why one was used here. Alternatively, it could also be a hash constructor.
is short for
Perl peeks into the braces to guess if it's a bare loop or a hash constructor. Since you didn't provide the contents of the braces, we can't tell. |
|||||
|
|
In case of
). There are reasons to use double braces, though, with
And try to replace double braces with single ones. |
||||
|
|
|
Without much more code, it's hard to say what they're being used for. It could be a typo, or it could be a naked block, see chapter 10.4 The Naked Block Control Structure in Learning Perl. A naked block adds lexical scoping to variables within the block. |
|||||||||||
|
|
The {{ can be used to break out of an "if block". I have some code that contains:
|
|||
|
|