El eql?() es un método incorporado en Ruby que devuelve verdadero si otro tiene la misma subclase de estructura y tiene valores de miembros iguales.
Sintaxis : struct1.eql?(struct2)
Parámetros : la función no acepta ningún parámetro.
Valor de retorno : devuelve el valor booleano verdadero si ambos rangos dados son iguales, de lo contrario, devuelve falso.
Ejemplo 1 :
# Ruby program for eql? method in struct # Include struct Employee = Struct.new(:company_name, :position, :zip) #initialise struct struct1 = Employee.new("GEEK", "INTERN", 12345) struct2 = Employee.new("GEEK", "INTERN", 12345) # Prints the value of struct1.eql?(struct2) puts struct1.eql?(struct2)
Salida :
true
Ejemplo 2 :
# Ruby program for eql? method in struct # Include struct Employee = Struct.new(:company_name, :position) #initialise struct struct1 = Employee.new("GEEK", "INTERN") struct2 = Employee.new("Data structure", "INTERN") # Prints the value of struct1.eql?(struct2) puts struct1.eql?(struct2)
Salida :
false