I realise this is probably a simple question but what is '#::' achieving in below line of code. Is it a special variance of cons ?
def from(n: Int): Stream[Int] = n #:: from(n + 1)
|
I realise this is probably a simple question but what is '#::' achieving in below line of code. Is it a special variance of cons ?
|
|||||
|
|
This operator is used to construct streams as opposed to lists. Consider the same code snippet with simple cons:
running this method will result in |
|||||
|
|
It's the equivalent to That is, |
|||
|
|
|
It means to create a Stream object. It is identical to |
|||
|
|
|
Somewhat late, but there is http://scalex.org/ that is really nice to lockup such things (google is really a mess on anything non-alpha-numeric)! Good Luck! |
|||
|
|