module Iterable(T)

Overview

The Iterable mixin provides convenience methods to collection classes that provide an #each method that returns an Iterator over the collection.

Direct including types

Defined in:

iterable.cr

Instance Method Summary

Instance Method Detail

def chunk(&block : T -> U) forall U #

Returns an Iterator that enumerates over the items, chunking them together based on the return value of the block.

(0..7).chunk(&./(3)).to_a => [{0, [0, 1, 2]}, {1, [3, 4, 5]}, {2, [6, 7]}]

See Iterator#chunks


[View source]
def cycle(n) #

Same as each.cycle(n).


[View source]
def cycle #

Same as each.cycle.


[View source]
abstract def each #

Must return an Iterator over the elements in this collection.


[View source]
def each_cons(count : Int) #

Same as each.cons(count).


[View source]
def each_slice(count : Int) #

Same as each.slice(count).


[View source]
def each_with_index(offset = 0) #

Same as each.with_index(offset).


[View source]
def each_with_object(obj) #

Same as each.with_object(obj).


[View source]