Get returns the value for a key and whether or not it exists. If a ValueCheckFunc was defined in the LockingMapOptions when the map was created then it will be invoked and the value will only be returned if the checker returns true.
(string)
| 43 | // created then it will be invoked and the value will only be returned if |
| 44 | // the checker returns true. |
| 45 | Get(string) (interface{}, bool) |
| 46 | |
| 47 | // Add the value to the map if and only if one of: it doesn't exist or (it exists, |
| 48 | // a ValueCheckFunc is defined, the check func returns false). Returns a bool |
no outgoing calls