Answers for "check if an element of an array is included in another ruby"

0

ruby does object exist in array

# Element exists in array
object_exists = arr.any? { |elem| elem == desired_value }

# Element with property exists in array
object_exists = arr.any? { |obj| obj.prop == desired_value }

# Type exists in array
object_exists = arr.any?(Integer)

# Element matching regex exists in array
object_exists = arr.any?(/d/)
Posted by: Guest on November-20-2020

Code answers related to "check if an element of an array is included in another ruby"

Browse Popular Code Answers by Language