Horje
Ruby | Numeric eql?() function

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

 




Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby | Time succ() function Ruby | Time succ() function
Ruby | Time subsec() function Ruby | Time subsec() function
Ruby | Time strftime() function Ruby | Time strftime() function
Ruby | Time thursday? function Ruby | Time thursday? function
Ruby | Vector hash() function Ruby | Vector hash() function

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
10