Copyright © 2014 Michael Truog
Version: 1.3.3 Dec 20 2014 15:04:58 ------------------------------------------------------------------------
Authors: Michael Truog (mjtruog [at] gmail (dot) com).
key_values() = key_values(binary() | string() | atom(), binary() | string() | any())
key_values(Key, Value) = [{Key, Value}] | dict:dict(Key, Value)
| erase/2 |
Generic key/value erase.RequestInfo's key/value result from request_info_key_value_parse/1 can be used here to erase request meta-data while encapsulating the data structure used for the lookup. |
| find/2 |
Generic key/value find.RequestInfo's key/value result from request_info_key_value_parse/1 can be used here to access the request meta-data while encapsulating the data structure used for the lookup. |
| store/3 |
Generic key/value store.RequestInfo's key/value result from request_info_key_value_parse/1 can be used here to store request meta-data while encapsulating the data structure used for the lookup. |
erase(Key::any(), KeyValues::key_values()) -> NewKeyValues::key_values()
find(Key::any(), KeyValues::key_values()) -> {ok, Value::any()} | error
store(Key::any(), Value::any(), KeyValues::key_values()) -> NewKeyValues::key_values()
Generated by EDoc, Dec 20 2014, 15:04:58.