What does Scala's @ operator do?
For example, in the blog post Formal Language Processing in Scala, Part 2 there is a something like this
case x @ Some(Nil) => x
|
What does Scala's @ operator do? For example, in the blog post Formal Language Processing in Scala, Part 2 there is a something like this
|
||||
|
|
|
It enables one to bind a matched pattern to a variable. Consider the following, for instance:
You can easily extract the content:
But what if you wanted not the content of
Note that |
|||||||||||||||||
|
|
|
|||
|
|
|
When pattern matching |
|||
|
|
|
Allows you to match the top-level of a pattern. Example:
|
|||||
|
|
It sets the value of |
||||
|
|