module Iterable(T)

Overview

TheIterable mixin provides convenience methods to collection classes that provide an#each method that returns anIterator over the collection.

Direct including types

Defined in:

iterable.cr

Instance Method Summary

Instance Method Detail

def chunk(reuse = false, &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 also:Iterator#chunk.


def chunk_while(reuse : Bool | Array(T) = false, &block : T, T -> B) forall B #

Same aseach.chunk_while(reuse, &block).

See also:Iterator#chunk_while.


def cycle(n) #

Same aseach.cycle(n).

See also:Iterator#cycle(n).


def cycle #

Same aseach.cycle.

See also:Iterator#cycle.


abstract def each #

Must return anIterator over the elements in this collection.


def each_cons(count : Int, reuse = false) #

Same aseach.cons(count, reuse).

See also:Iterator#cons(count, reuse).


def each_cons_pair #

Same aseach.cons_pair.

See also:Iterator#cons_pair.


def each_slice(count : Int, reuse = false) #

Same aseach.slice(count, reuse).

See also:Iterator#slice(count, reuse).


def each_step(n : Int) #

Same aseach.step(n).

See also:Iterator#step.


def each_step(n : Int, *, offset : Int) #

Same aseach.skip(offset).step(n).

See also:Iterator#step.


def each_with_index(offset = 0) #

Same aseach.with_index(offset).

See also:Iterator#with_index(offset).


def each_with_object(obj) #

Same aseach.with_object(obj).

See also:Iterator#with_object(obj).


def slice_after(reuse : Bool | Array(T) = false, &block : T -> B) forall B #

Same aseach.slice_after(reuse, &block).

See also:Iterator#slice_after(reuse, &block).


def slice_after(pattern, reuse : Bool | Array(T) = false) #

Same aseach.slice_after(pattern, reuse).

See also:Iterator#slice_after(pattern, reuse).


def slice_before(reuse : Bool | Array(T) = false, &block : T -> B) forall B #

Same aseach.slice_before(reuse, &block).

See also:Iterator#slice_before(reuse, &block).


def slice_before(pattern, reuse : Bool | Array(T) = false) #

Same aseach.slice_before(pattern, reuse).

See also:Iterator#slice_before(pattern, reuse).


def slice_when(reuse : Bool | Array(T) = false, &block : T, T -> B) forall B #

Same aseach.slice_when(reuse, &block).

See also:Iterator#slice_when.