Open In App

Ruby | Range exclude_end? function

Last Updated : 12 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
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
# 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
# Ruby program for exclude_end?()
# method in Range 

# Initialize range 
range1 = (0..10)

# Prints the boolean value
puts range1.exclude_end?
Output:
false

Similar Reads