Enumerables Flashcards
all?
Everything “tested” by the block returns TRUTHY (all must be true in order for it to return TRUTHY)
any?
Did anything tested by the block return TRUTHY? (Just needs one TRUTHY in order for it to be true)
collect
A synonym for .map
count
Which elements satisfy the block OR, without block, how many elements are there?
detect
Which elements satisfy the block FIRST. (Does the same thing as .find)
find_all
Which elements satisfy the block?
find_index
What is the index of the first element to satisfy the block?
max
Whats the highest value?
max_by
Whats the highest value based on some property of the element?
min
Whats the lowest value?
sort
Put the values in order
.map
creates a new array after transforming each element
.reduce
distill a value after joining elements together