class Nydp::Builtin::HashKeyPresent
Public Instance Methods
builtin_call(h, k)
click to toggle source
# File lib/nydp/builtin/hash.rb, line 33 def builtin_call h, k h.key?(k) || nil end
name()
click to toggle source
# File lib/nydp/builtin/hash.rb, line 31 def name ; "hash-key?" ; end