Open In App
Related Articles

Ruby | Enumerable include?() function

Improve Article
Improve
Save Article
Save
Like Article
Like

The include?() of enumerable is an inbuilt method in Ruby returns a boolean value. It returns true if the enumerable contains the given elements, or else it returns false.

Syntax: enu.include?(el)

Parameters: The function takes an element which is to be checked for.

Return Value: It returns a boolean value.

Example #1:




# Ruby program for include? method in Enumerable
  
# Initialize 
enu = [2, 8, 9, 10, 23]
  
# Prints
puts enu.include?(8)
  
puts enu.include?(7)


Output:

true
false

Example #2:




# Ruby program for include? method in Enumerable
  
# Initialize 
enu = (20..30)
  
# Prints
puts enu.include?(10)
  
puts enu.include?(29)


Output:

false
true
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 05 Dec, 2019
Like Article
Save Article
Similar Reads