Open In App

Ruby | Range exclude_end? function

Last Updated : 18 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
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 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

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads