Method: Dictionary#insert
- Defined in:
- lib/gems/extlib-0.9.9/lib/extlib/dictionary.rb
#insert(i, k, v) ⇒ Object
237 238 239 240 |
# File 'lib/gems/extlib-0.9.9/lib/extlib/dictionary.rb', line 237 def insert( i,k,v ) @order.insert( i,k ) @hash.store( k,v ) end |