Say I have a function, for example the old favourite
def factorial(n:Int) = (BigInt(1) /: (1 to n)) (_*_)
Now I want to find the biggest value
Stream.from(1)
creates a stream starting from 1 and incrementing by 1. It's all in the API docs.