Cheat Sheets

A collection of cheat sheets.

Hosted on GitHub Pages — Theme by mattgraham

Streams

Official documentation

Construction

Stream.map(1..1000, & &1)
# => 1, 2, 3, ..., 1000

Stream.cycle([1, 2, 3])
# => 1, 2, 3, 1, 2, 3, 1, 2, 3, ...

# Generator function
Stream.iterate(0, & &1+1)
# => 0, 1, 2, 3, 4, ...