модуль Enumerable
Публичные методы экземпляров
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 184 def compact_blank reject(&:blank?) end
Возвращает новый Array без пустых элементов. Использует Object#blank? для определения, является ли элемент пустым.
[1, "", nil, 2, " ", [], {}, false, true].compact_blank
# => [1, 2, true]
Set.new([nil, "", 1, false]).compact_blank
# => [1]
При вызове для Hash, возвращает новый Hash без пустых значений.
{ a: "", b: 1, c: nil, d: [], e: false, f: true }.compact_blank
# => { b: 1, f: true }
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 118 def exclude?(object) !include?(object) end
Обратная операция к Enumerable#include?. Возвращает true , если коллекция не содержит объект.
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 132
def excluding(*elements)
elements.flatten!(1)
reject { |element| elements.include?(element) }
end Возвращает копию перечислимого объекта, исключая указанные элементы.
["David", "Rafael", "Aaron", "Todd"].excluding "Aaron", "Todd"
# => ["David", "Rafael"]
["David", "Rafael", "Aaron", "Todd"].excluding %w[ Aaron Todd ]
# => ["David", "Rafael"]
{foo: 1, bar: 2, baz: 3}.excluding :bar
# => {foo: 1, baz: 3}
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 196 def in_order_of(key, series) group_by(&key).values_at(*series).flatten(1).compact end
Возвращает новый Array , порядок которого задан в series, на основе key объектов в исходном перечислимом объекте.
[ Person.find(5), Person.find(3), Person.find(1) ].in_order_of(:id, [ 1, 5, 3 ]) # => [ Person.find(1), Person.find(5), Person.find(3) ]
Если series содержат ключи, у которых нет соответствующего элемента в Enumerable, эти ключи игнорируются. Если Enumerable содержит дополнительные элементы, не указанные в series, эти элементы не включаются в результат.
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 112 def including(*elements) to_a.including(*elements) end
Возвращает новый массив, включающий переданные элементы.
[ 1, 2, 3 ].including(4, 5) # => [ 1, 2, 3, 4, 5 ] ["David", "Rafael"].including %w[ Aaron Todd ] # => ["David", "Rafael", "Aaron", "Todd"]
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 52
def index_by
if block_given?
result = {}
each { |elem| result[yield(elem)] = elem }
result
else
to_enum(:index_by) { size if respond_to?(:size) }
end
end Преобразует перечислимый объект в словарь, используя результат блока как ключ, а элемент — как значение.
people.index_by(&:login)
# => { "nextangle" => <Person ...>, "chade-" => <Person ...>, ...}
people.index_by { |person| "#{person.first_name} #{person.last_name}" }
# => { "Chade- Fowlersburg-e" => <Person ...>, "David Heinemeier Hansson" => <Person ...>, ...}
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 75
def index_with(default = (no_default = true))
if block_given?
result = {}
each { |elem| result[elem] = yield(elem) }
result
elsif no_default
to_enum(:index_with) { size if respond_to?(:size) }
else
result = {}
each { |elem| result[elem] = default }
result
end
end Преобразует перечислимый объект в словарь, используя элемент как ключ, а результат блока — как значение.
post = Post.new(title: "hey there", body: "what's up?")
%i( title body ).index_with { |attr_name| post.public_send(attr_name) }
# => { title: "hey there", body: "what's up?" }
Если вместо блока передаётся аргумент, он будет использоваться как значение для всех элементов:
%i( created_at updated_at ).index_with(Time.now)
# => { created_at: 2020-03-09 22:31:47, updated_at: 2020-03-09 22:31:47 }
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 93
def many?
cnt = 0
if block_given?
any? do |*args|
cnt += 1 if yield(*args)
cnt > 1
end
else
any? { (cnt += 1) > 1 }
end
end Возвращает true , если перечислимый объект содержит более одного элемента. Функционально эквивалентно enum.to_a.size > 1. Можно вызывать с блоком, например, people.many? { |p| p.age > 26 } возвращает true , если больше одного человека старше 26 лет.
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 40 def maximum(key) map(&key).max end
Вычисляет максимальное значение из выделенных элементов.
payments = [Payment.new(5), Payment.new(15), Payment.new(10)] payments.maximum(:price) # => 15
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 32 def minimum(key) map(&key).min end
Вычисляет минимальное значение из выделенных элементов.
payments = [Payment.new(5), Payment.new(15), Payment.new(10)] payments.minimum(:price) # => 5
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 161
def pick(*keys)
return if none?
if keys.many?
keys.map { |key| first[key] }
else
first[keys.first]
end
end Извлекает заданный ключ из первого элемента в перечислимом объекте.
[{ name: "David" }, { name: "Rafael" }, { name: "Aaron" }].pick(:name)
# => "David"
[{ id: 1, name: "David" }, { id: 2, name: "Rafael" }].pick(:id, :name)
# => [1, "David"]
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 145
def pluck(*keys)
if keys.many?
map { |element| keys.map { |key| element[key] } }
else
key = keys.first
map { |element| element[key] }
end
end Извлекает заданный ключ из каждого элемента в перечислимом объекте.
[{ name: "David" }, { name: "Rafael" }, { name: "Aaron" }].pluck(:name)
# => ["David", "Rafael", "Aaron"]
[{ id: 1, name: "David" }, { id: 2, name: "Rafael" }].pluck(:id, :name)
# => [[1, "David"], [2, "Rafael"]]
# File activesupport/lib/active_support/core_ext/enumerable.rb, line 206 def sole case count when 1 then return first # rubocop:disable Style/RedundantReturn when 0 then raise ActiveSupport::EnumerableCoreExt::SoleItemExpectedError, "no item found" when 2.. then raise ActiveSupport::EnumerableCoreExt::SoleItemExpectedError, "multiple items found" end end
Возвращает единственный элемент в перечислимом объекте. Если элементов нет или больше одного, вызывается Enumerable::SoleItemExpectedError.
["x"].sole # => "x"
Set.new.sole # => Enumerable::SoleItemExpectedError: no item found
{ a: 1, b: 2 }.sole # => Enumerable::SoleItemExpectedError: multiple items found
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.