El vacío?() es un método incorporado en Ruby que devuelve un valor booleano. Devuelve verdadero si la array está vacía, de lo contrario devuelve falso.
Sintaxis : mat1.empty?()
Parámetros : La función no acepta ningún parámetro.
Valor devuelto : Devuelve un valor booleano.
Ejemplo 1 :
# Ruby program for empty() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[1, 21], [31, 18]] # prints if empty or not puts mat1.empty?()
Salida :
false
Ejemplo 2 :
# Ruby program for empty() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[] # prints if empty or not puts mat1.empty?()
Salida :
true