Actions
Feature #12523
open`Object#values_at`
Status:
Open
Assignee:
-
Target version:
-
Description
It might be convenient to have a method that returns multiple attributes of an object.
class A
attr_accessors :foo, :bar, :baz
def initialize foo, bar, baz; @foo, @bar, @baz = foo, bar, baz end
end
a = A.new("a", "b", "c")
a.values_at(:baz, :foo) # => ["c", "a"]
Actions
Like0
Like0Like0