Open In App

Ruby | Numeric eql?() function

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The eql?() is an inbuilt method in Ruby returns a boolean value. It returns true if both the numbers are equal, else it returns false. 

Syntax: num1.eql?(num2)

Parameters: The function needs two number whose comparison is to be done.

Return Value: It returns returns true if both are equal, else it returns false.

Example 1

Ruby




# Ruby program for eql?() method in Numeric
 
# Initialize a number
num1 = 1.7
num2 = 1.7
 
# Function used
res = num1.eql?(num2)
 
# Prints eql or not
puts res


Output

true

Example 2

Ruby




# Ruby program for eql?() method in Numeric
 
# Initialize a number
num1 = 15
num2 = 19
 
# Function used
res = num1.eql?(num2)
 
# Prints eql or not
puts res


Output

false

 


Last Updated : 18 Jan, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads