Answers for "ruby find object in array by attribute"

C
0

ruby find object in array by attribute

# Use select to get all objects in an array that match your criteria
my_array.select { |obj| obj.attr == 'value' }

# find_all and filter (in Ruby 2.6+) are aliases for select
my_array.find_all { |obj| obj.attr == 'value' }
my_array.filter { |obj| obj.attr == 'value' }

# Use find to get the first object in an array that matches your criteria
my_array.find { |obj| obj.attr == 'value' }
Posted by: Guest on December-08-2020

Code answers related to "ruby find object in array by attribute"

Code answers related to "C"

Browse Popular Code Answers by Language