compact() es un método de clase Hash que devuelve el Hash después de eliminar todos los elementos de valor ‘nil’ (si los hay) del Hash.
Sintaxis: Hash.compact()
Parámetro: Hash del que eliminar el valor ‘nil’.
Retorno: elimina todos los valores nulos del hash.
Ejemplo 1:
# Ruby code for compact() method # showing how to remove nil values # declaring Hash value a = {a:100, b:nil} # declaring Hash value b = {a:100, c:nil, b:200} # declaring Hash value c = {a:100} # removing nil value from Hash puts "removing nil value : #{a.compact}\n\n" # removing nil value from Hash puts "removing nil value : #{b.compact}\n\n" # removing nil value from Hash puts "removing nil value : #{c.compact}\n\n"
Producción :
removing nil value : {a:100} removing nil value : {a:100, b:200} removing nil value : {a:100}
Ejemplo #2:
# Ruby code for compact() method # showing how to remove nil values # declaring Hash value a = { "a" => nil, "b" => 200 } # declaring Hash value b = {"a" => 100} # declaring Hash value c = {"a" => 100, "c" => nil, "b" => 200} # removing nil value from Hash puts "removing nil value : #{a.compact}\n\n" # removing nil value from Hash puts "removing nil value : #{b.compact}\n\n" # removing nil value from Hash puts "removing nil value : #{c.compact}\n\n"
Producción :
removing nil value : {b:200} removing nil value : {a:100} removing nil value : {a:100, b:200}
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA