Open In App

Ruby | Range exclude_end? function

The exclude_end?() is an inbuilt method in Ruby returns boolean value true if the range excludes its end value, else it returns false.

Syntax: range1.exclude_end?



Parameters: The function accepts no parameter

Return Value: It returns boolean value true if the range excludes its end value, else it returns false.



Example 1:




# Ruby program for exclude_end?()
# method in Range 
  
# Initialize range 
range1 = (0...10)
  
# Prints the boolean value
puts range1.exclude_end?

Output:

true

Example 2:




# Ruby program for exclude_end?()
# method in Range 
  
# Initialize range 
range1 = (0..10)
  
# Prints the boolean value
puts range1.exclude_end?

Output:

false
Article Tags :