Flowdock
include?(p1) public

Returns true if the given key is present in hsh.

h = { "a" => 100, "b" => 200 }
h.has_key?("a")   #=> true
h.has_key?("z")   #=> false
Show source
Register or log in to add new notes.