It might be a trivial question, but I am unable to find the documentation for it:
Inside Stream
, and at other places I have seen examples using the method #::
. For example:
val fibs: Stream[BigInt] = BigInt(0) #:: BigInt(1) #:: fibs.zip(fibs.tail).map { n => n._1 + n._2 }
But I dont find the documentation for implicit method #::
in the api. What is it? and where is it declared?