Module Enumerable
In: lib/sequel_core/core_ext.rb

Methods

send_each  

Public Instance methods

Invokes the specified method for each item, along with the supplied arguments.

[Source]

    # File lib/sequel_core/core_ext.rb, line 34
34:   def send_each(sym, *args)
35:     each{|i| i.send(sym, *args)}
36:   end

[Validate]