removes Enumerable#pluck from the AS guide

This commit is contained in:
Xavier Noria
2011-12-23 09:50:50 +01:00
parent 35ded6fd08
commit 824334c15c

View File

@@ -2053,16 +2053,6 @@ end
NOTE: Defined in +active_support/core_ext/enumerable.rb+.
h4. +pluck+
The +pluck+ method collects the value of the passed method for each element and returns the result as an array.
<ruby>
people.pluck(:name) # => [ "David Heinemeier Hansson", "Jamie Heinemeier Hansson" ]
</ruby>
NOTE: Defined in +active_support/core_ext/enumerable.rb+.
h4. +each_with_object+
The +inject+ method offers iteration with an accumulator: