Class: Ratomic::Map

Inherits:
ConcurrentHashMap
  • Object
show all
Defined in:
lib/ratomic.rb

Instance Method Summary collapse

Instance Method Details

#[](key) ⇒ Object



59
60
61
# File 'lib/ratomic.rb', line 59

def [](key)
  get(key)
end

#[]=(key, value) ⇒ Object



55
56
57
# File 'lib/ratomic.rb', line 55

def []=(key, value)
  set(key, value)
end