Last active
August 29, 2015 14:05
-
-
Save 2m/4d0dff72ca14a0c3e8db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scala> Stream.from(3).takeWhile(_ => new Random().nextDouble() > 0.1).force | |
res9: scala.collection.immutable.Stream[Int] = Stream(3, 4, 5, 6, 7, 8, 9) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment