Value returns the value and existence flag for a given key.
(key string)
| 58 | type Valuer interface { |
| 59 | // Value returns the value and existence flag for a given key. |
| 60 | Value(key string) (interface{}, bool) |
| 61 | } |
| 62 | |
| 63 | // CallValuer implements the Call method for evaluating function calls. |
no outgoing calls