Logo

Programming-Idioms

  • Erlang
  • Haskell
  • Ruby

Idiom #319 Generator function

Write a function g that behaves like an iterator.
Explain if it can be used directly in a for loop.

g = (1..6).each

Many methods in ruby will take a block. If this block is missing, often the preceding object and method are stored in an Enumerator for later use.
List<int> g(int start) sync* {
  while (true) {
    yield start;
    start++;
  }
}

Infinite lazy list of ints starting from a specific integer

New implementation...
< >
willard