Copyright © 2010 Mochi Media, Inc.
Authors: Bob Ippolito (bob@mochimedia.com).
| delete/1 | Delete term stored at K, no-op if non-existent. |
| get/1 | Equivalent to get(K, undefined).
|
| get/2 | Get the term for K or return Default. |
| put/2 | Store term V at K, replaces an existing term if present. |
delete(K::atom()) -> boolean()
Delete term stored at K, no-op if non-existent.
get(K::atom()) -> any() | undefined
Equivalent to get(K, undefined).
get(K::atom(), T) -> any() | T
Get the term for K or return Default.
put(K::atom(), V::any()) -> ok
Store term V at K, replaces an existing term if present.
Generated by EDoc