Enumerable Flashcards
Ruby Enumerable
returns true if the block never returns false or nil
all? { |obj| block } => true or false
Ruby Enumerable
returns true if the block ever returns a value other than false or nil
any? { |obj| block } => true or false
Ruby Enumerable
returns a new array with the results of running block once for every element in enum
map { |obj| block } => array
Ruby Enumerable
returns the number of elements for which the block yields a true value
count { |obj| block } => int
Ruby Enumerable
returns the first for which block is not false
find(ifnone = nil) { |obj| block } => obj or nil
Ruby Enumerable
alias for select
find_all { |obj| block } => array
Ruby Enumerable
groups the collection by result of the block; returns a hash where the keys are the evaluated result from the block and the values are arrays of elements in the collection that correspond to the key
group_by { |obj| block } => a_hash
ex
(1..6).group_by { |i| i%3 } #=> {0=>[3, 6], 1=>[1, 4], 2=>[2, 5]}
Ruby Enumerable
returns true if any member of enum equals obj
include?(obj) => true or false
Ruby Enumerable
combines all elements of enum by applying a binary operation, specified by a block or a symbol that names a method or operator
inject(initial, sym) => obj inject(initial) { |memo, obj| block } => obj
ex
(5..10).inject(0, &:+) => 45 (5..10).inject(0) { |memo, num| memo + num } => 45
Ruby Enumerable
returns the object in enum with the maximum value; can use a block to implement a \<=\> b
max(n) { |a,b| block } => obj
ex
a = %w(albatross dog horse)
a. max #=> “horse”
a. max { |a, b| a.length b.length } #=> “albatross”
Ruby Enumerable
alias of include?
member?(obj) => true or false
Ruby Enumerable
opposite of max
min(n) { |a,b| block }
Ruby Enumerable
returns true if the block never returns true for all elements
none? { |obj| block } => true or false
Ruby Enumerable
returns true if the block returns true exactly once
one? { |obj| block } => true or false
Ruby Enumerable
opposite of select
reject { |obj| block } => array
Ruby Enumerable
returns an array containing all elements of enum for which the given block returns a true value
select { |obj| block } => array
Ruby Enumerable
returns an array containing the items in enum sorted, either according to their own method, or by using the results of the supplied block
sort { |a, b| block } => array
Ruby Enumerable
takes one element from enum and merges corresponding elements from each args. This generates a sequence of n-element arrays, where n is one more than the count of arguments
zip(arg, …) => an_array_of_array
zip(arg, …) { |arr| block } => nil
ex
a = [4, 5, 6]
b = [7, 8, 9]
a.zip(b) #=> [[4, 7], [5, 8], [6, 9]]
[1, 2, 3].zip(a, b) #=> [[1, 4, 7], [2, 5, 8], [3, 6, 9]]
[1, 2].zip(a, b) #=> [[1, 4, 7], [2, 5, 8]]
a.zip([1, 2], [8]) #=> [[4, 1, 8], [5, 2, nil], [6, nil, nil]]
c = []
a.zip(b) { |x, y| c nil
c #=> [11, 13, 15]
Ruby Enumerable
iterates the given block for each element with an arbitrary object given, and returns the initially given object
each_with_object(obj) { |element, object| block } => obj
ex
evens = (1..10).each_with_object([]) { |i, a| a [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
Ruby Enumerable
all? { |obj| block } => true or false
returns true if the block never returns false or nil
Ruby Enumerable
any? { |obj| block } => true or false
returns true if the block ever returns a value other than false or nil
Ruby Enumerable
map { |obj| block } => array
returns a new array with the results of running block once for every element in enum
Ruby Enumerable
count { |obj| block } => int
returns the number of elements for which the block yields a true value
Ruby Enumerable
find(ifnone = nil) { |obj| block } => obj or nil
returns the first for which block is not false
Ruby Enumerable
find_all { |obj| block } => array
alias for select
Ruby Enumerable
group_by { |obj| block } => a_hash
ex
(1..6).group_by { |i| i%3 } #=> {0=>[3, 6], 1=>[1, 4], 2=>[2, 5]}
groups the collection by result of the block; returns a hash where the keys are the evaluated result from the block and the values are arrays of elements in the collection that correspond to the key
Ruby Enumerable
include?(obj) => true or false
returns true if any member of enum equals obj
Ruby Enumerable
inject(initial, sym) => obj inject(initial) { |memo, obj| block } => obj
ex
(5..10).inject(0, &:+) => 45 (5..10).inject(0) { |memo, num| memo + num } => 45
combines all elements of enum by applying a binary operation, specified by a block or a symbol that names a method or operator
Ruby Enumerable
max(n) { |a,b| block } => obj
ex
a = %w(albatross dog horse)
a. max #=> “horse”
a. max { |a, b| a.length b.length } #=> “albatross”
returns the object in enum with the maximum value; can use a block to implement a \<=\> b
Ruby Enumerable
member?(obj) => true or false
alias of include?
Ruby Enumerable
min(n) { |a,b| block }
opposite of max
Ruby Enumerable
none? { |obj| block } => true or false
returns true if the block never returns true for all elements
Ruby Enumerable
one? { |obj| block } => true or false
returns true if the block returns true exactly once
Ruby Enumerable
reject { |obj| block } => array
opposite of select
Ruby Enumerable
select { |obj| block } => array
returns an array containing all elements of enum for which the given block returns a true value
Ruby Enumerable
sort { |a, b| block } => array
returns an array containing the items in enum sorted, either according to their own method, or by using the results of the supplied block
Ruby Enumerable
zip(arg, …) => an_array_of_array
zip(arg, …) { |arr| block } => nil
ex
a = [4, 5, 6]
b = [7, 8, 9]
a.zip(b) #=> [[4, 7], [5, 8], [6, 9]]
[1, 2, 3].zip(a, b) #=> [[1, 4, 7], [2, 5, 8], [3, 6, 9]]
[1, 2].zip(a, b) #=> [[1, 4, 7], [2, 5, 8]]
a.zip([1, 2], [8]) #=> [[4, 1, 8], [5, 2, nil], [6, nil, nil]]
c = []
a.zip(b) { |x, y| c nil
c #=> [11, 13, 15]
takes one element from enum and merges corresponding elements from each args. This generates a sequence of n-element arrays, where n is one more than the count of arguments
Ruby Enumerable
each_with_object(obj) { |element, object| block } => obj
ex
evens = (1..10).each_with_object([]) { |i, a| a [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
iterates the given block for each element with an arbitrary object given, and returns the initially given object