El hash() es un método incorporado en Ruby que devuelve el código hash del vector
Sintaxis : vec1.hash()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve el código hash del vector.
Ejemplo 1 :
# Ruby program for hash() method in Vector # Include matrix require "matrix" # Initialize the vector vec1 = Vector[1, 2, 3] # Prints hash code of the vector puts vec1.hash()
Salida :
-2830195808542644263
Ejemplo 2 :
# Ruby program for hash() method in Vector # Include matrix require "matrix" # Initialize the vector vec1 = Vector[1, 1, 1] # Prints hash code of the vector puts vec1.hash()
Salida :
-3301760512247990187