vote up 6 vote down star

I've come across a piece of Haskell code that looks like this:

ps@(p:pt)

What does the @ symbol mean in this context? I can't seem to find any info on Google (it's unfortunately hard to search for symbols on Google), and I can't find the function in the Prelude documentation, so I imagine it must be some sort of syntactic sugar instead.

flag

3  
Don't try to search for that specific symbol. Search for Haskell syntax in general, and then find the symbol in that overall discussion. For example, the top Google result for "Haskell syntax": cs.anu.edu.au/Student/comp1100/…. Second occurrence of @ on that page explains it. – Rob Kennedy Jul 20 at 13:17

3 Answers

vote up 17 vote down check

Yes, it's just syntactic sugar, with @ read aloud as "as". ps@(p:pt) gives you names for

  1. the list: ps
  2. the list's head : p
  3. the list's tail: pt

Without the @, you'd have to choose between (1) or (2):(3).

This syntax actually works for any constructor; if you have data Tree a = Tree a [Tree a], then t@(Tree _ kids) gives you access to both the tree and its children.

link|flag
and iirc then it's not just for lists. it's for general pattern matching, right? – yairchu Jul 20 at 13:22
@yairchu: Yes As-pattern matching can be used on any constructor. See: en.wikibooks.org/wiki/Haskell/… – Tom Lokhorst Jul 20 at 13:27
Good point, I added that. – Nathan Sanders Jul 20 at 14:22
vote up 1 vote down

To add to what the other people have said, they are called as-patterns (in ML the syntax uses the keyword "as"), and are described in the section of the Haskell Report on patterns.

link|flag
vote up 7 vote down

The @ Symbol is used to both give a name to a parameter and match that parameter against a pattern that follows the @. It's not specific to lists and can also be used with other data structures.

This is useful if you want to "decompose" a parameter into it's parts while still needing the parameter as a whole somewhere in your function. One example where this is the case is the tails function from the standard library:

tails                   :: [a] -> [[a]]
tails []                =  [[]]
tails xxs@(_:xs)        =  xxs : tails xs
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.