(key string, kind reflect.Kind, value interface{})
| 223 | } |
| 224 | |
| 225 | func newErrEntryNotFound(key string, kind reflect.Kind, value interface{}) *ErrEntryNotFound { |
| 226 | return &ErrEntryNotFound{Err: &memstore.ErrEntryNotFound{Key: key, Kind: kind}, Value: value} |
| 227 | } |
| 228 | |
| 229 | // GetInt same as `Get` but returns its int representation, |
| 230 | // if key doesn't exist then it returns -1 and a non-nil error. |
no outgoing calls
no test coverage detected
searching dependent graphs…