Method: Nendo::BuiltinFunctions#_hash_MIMARKtable_MIMARKexist_QUMARK

Defined in:
lib/nendo/ruby/builtin_functions.rb

#_hash_MIMARKtable_MIMARKexist_QUMARK(h, key) ⇒ Object



492
493
494
495
# File 'lib/nendo/ruby/builtin_functions.rb', line 492

def _hash_MIMARKtable_MIMARKexist_QUMARK( h, key )
  # don't use h.has_key(k), because has_key method undefined on some database bindings. (e.g. KyotoCabinet)
  h[key] ? true : false
end