Hash#has_value?() es un método de clase Hash que verifica si el valor dado está presente en el hash.
Sintaxis: Hash.has_value?()
Parámetro: valores hash
Devuelve: verdadero: si el valor dado está presente en el hash, de lo contrario, devuelve falso
Ejemplo 1 :
# Ruby code for Hash.has_value?() method # declaring Hash value a = {a:100, b:200} # declaring Hash value b = {a:100, c:300, b:200} # declaring Hash value c = {a:100} # has_value? Value puts "Hash a has_value? form : #{a.has_value?(200)}\n\n" puts "Hash b has_value? form : #{b.has_value?(10)}\n\n" puts "Hash c has_value? form : #{c.has_value?(100)}\n\n"
Producción :
Hash a has_value? form : true Hash b has_value? form : false Hash c has_value? form : true
Ejemplo #2:
# Ruby code for Hash.has_value?() method # declaring Hash value a = { "a" => 100, "b" => 200 } # declaring Hash value b = {"a" => 100} # declaring Hash value c = {"a" => 100, "c" => 300, "b" => 200} # has_value? Value puts "Hash a has_value? form : #{a.has_value?(200)}\n\n" puts "Hash b has_value? form : #{b.has_value?(10)}\n\n" puts "Hash c has_value? form : #{c.has_value?(100)}\n\n"
Producción :
Hash a has_value? form : true Hash b has_value? form : false Hash c has_value? form : true
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