Firstly I had an issue finding #::
method of Stream. Which got resolved from this.
Now I am looking for the below method in the Stream
def iterate[A](start: A, len: Int)(f: A => A): Stream[A]
The Stream API has no mention of it.
Secondly in the Scala Doc, why can't they have all the inner classes defined in the same respective parent class itself. Why does a user has to go and click at c
character on left panel to search for Stream.consWrapper when he could directly read it inside the documentation for Stream
itself?
Am I missing something? I am a Scala newbie (3 months), but if a new user can't get used to it, most of it will not be able to.