Open In App

Ruby | Enumerable detect() function

Last Updated : 18 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The detect() 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.detect { |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 detect method in Enumerable
  
# Initialize
enu = (1..50)
  
# returns first element 
enu.detect { |el|  el % 2 == 0 && el % 9 == 0}


Output:

18

Example 2:




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


Output:

Enumerator: 1..50:detect

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads