I'm reading A Gentle Introduction to Haskell (which is not so gentle) and it repeatedly uses the : operator without directly explaining what it does.
So, what exactly does it do?
|
I'm reading A Gentle Introduction to Haskell (which is not so gentle) and it repeatedly uses the So, what exactly does it do? |
|||||
|
|
Returns a list which has
Is the list |
|||
|
|
|
Could always check out the types in GHCi/HUGS, as the first steps in the tutorial encourage you to download GHC/HUGS.
From their respective types, it's quite easy to deduce their usage. PS: http://haskell.org/hoogle/ is awesome. |
|||||||||
|
|
It is the type constructor for lists. It is no different from any other type constructor like So you can define infix constructors for your own data types. For example:
in the above code we define a type called The above is equivalent to :
|
|||
|
|
|
The : operator in Haskell is the constructor for lists. It 'cons' whatever is before the colon onto the list specified after it. For instance, a list of integers is made by 'consing' each number onto the empty list, e.g; The list
giving you;
Written fully that's;
|
|||
|
|
|
According to the first result in Google for "haskell colon operator": x : y inserts item x at the beginning of list y. (unlike ++ operator which combines two lists). |
|||
|
|