Class: Hash

Inherits:
Object show all
Includes:
Nydp::Helper
Defined in:
lib/nydp/core_ext.rb

Direct Known Subclasses

Nydp::Hash

Instance Method Summary collapse

Methods included from Nydp::Helper

#cons, #list, #literal?, #pair?, #sig, #sym, #sym?

Methods included from Nydp::Converter

#n2r, #r2n

Instance Method Details

#_nydp_get(a) ⇒ Object



54
# File 'lib/nydp/core_ext.rb', line 54

def _nydp_get a    ; self[n2r a]           ; end

#_nydp_keysObject



56
# File 'lib/nydp/core_ext.rb', line 56

def _nydp_keys     ; keys                  ; end

#_nydp_set(a, v) ⇒ Object



55
# File 'lib/nydp/core_ext.rb', line 55

def _nydp_set a, v ; self[n2r a] = n2r(v)  ; end