Class: Symbol
- Inherits:
-
Object
- Object
- Symbol
- Defined in:
- lib/bane/compatibility.rb
Instance Method Summary collapse
-
#to_proc ⇒ Object
Turns the symbol into a simple proc, which is especially useful for enumerations.
Instance Method Details
#to_proc ⇒ Object
Turns the symbol into a simple proc, which is especially useful for enumerations. Examples:
# The same as people.collect { |p| p.name }
people.collect(&:name)
# The same as people.select { |p| p.manager? }.collect { |p| p.salary }
people.select(&:manager?).collect(&:salary)
32 33 34 |
# File 'lib/bane/compatibility.rb', line 32 def to_proc Proc.new { |*args| args.shift.__send__(self, *args) } end |