Last active
May 20, 2020 19:14
-
-
Save sashadev-sky/6b624d37488b96cd57a45408eda1ef6c 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
| use Enumerable#lazy method: avoid endless loop and get just the values u need | |
| range = 1..Float::INFINITY | |
| p range.lazy.collect { |x| x * x }.first(10) | |
| #=> [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment