Type:
Module

The Enumerable mixin provides collection classes with several traversal and searching methods, and with the ability to sort. The class must provide a method each, which yields successive members of the collection. If Enumerable#max, #min, or #sort is used, the objects in the collection must also implement a meaningful <=> operator, as these methods rely on an ordering between members of the collection.

flat_map

enum.flat_map { |obj| block } â arrayenum.flat_map â an_enumerator Instance Public

2015-04-05 00:24:54
find

enum.find(ifnone = nil) { |obj| block } â obj or nilenum.find(ifnone = nil) â an_enumerator

2015-04-05 00:03:24
find_all

enum.find_all { |obj| block } â arrayenum.find_all â an_enumerator Instance Public methods

2015-04-05 00:10:48
select

enum.select { |obj| block } â arrayenum.select â an_enumerator Instance Public methods

2015-04-05 01:55:33
entries

enum.entries â array Instance Public methods Returns an array containing the

2015-04-04 23:57:02
cycle

enum.cycle(n=nil) { |obj| block } â nilenum.cycle(n=nil) â an_enumerator Instance Public

2015-04-04 23:34:04
each_with_object

enum.each_with_object(obj) { |(*args), memo_obj| ... } â objenum.each_with_object(obj) â an_enumerator

2015-04-04 23:56:16
inject

enum.inject(initial, sym) â objenum.inject(sym) â objenum.inject(initial) { |memo, obj| block } â objenum.inject { |memo,

2015-04-05 00:45:34
sort

enum.sort â arrayenum.sort { |a, b| block } â array Instance Public methods

2015-04-05 02:07:25
first

enum.first â obj or nilenum.first(n) â an_array Instance Public methods

2015-04-05 00:21:33