Class: Store
Class Method Summary (collapse)
-
+ (Object) [](key)
Returns the value of a key.
-
+ (Object) []=(key, value)
Sets a value for a key.
-
+ (Hash) all
Returns a hash containing all the keys and values.
-
+ (Object) delete(key)
Deletes a key from storage.
Class Method Details
+ (Object) []=(key, value)
Sets a value for a key
|
# File 'flow/store/store.rb', line 8
|
+ (Hash) all
Returns a hash containing all the keys and values
|
# File 'flow/store/store.rb', line 24
|
+ (Object) delete(key)
Deletes a key from storage.
|
# File 'flow/store/store.rb', line 13
|