Skip to content
Related Articles
Open in App
Not now

Related Articles

Ruby | Enumerable find() function

Improve Article
Save Article
Like Article
  • Last Updated : 05 Dec, 2019
Improve Article
Save Article
Like Article

The find() of enumerable is an inbuilt method in Ruby returns the first element which satisfies the given condition in the block. If there is no block, then it returns the enumerator itself.

Syntax: block.find { |obj| block }

Parameters: The function takes the block according to which the first which satisfies is to be returned.

Return Value: It returns the first element which satisfies the block or the enumerator instead.

Example 1:




# Ruby program for find method in Enumerable
  
# Initialize
enu = (1..50)
  
# returns first element 
enu.find { |el|  el % 2 == 0 && el % 9 == 0}


Output:

18

Example 2:




# Ruby program for find method in Enumerable
  
# Initialize
enu = (1..50)
  
# returns enumerator
enu.find


Output:

Enumerator: 1..50:find
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!