Has should return true if and only if the property exists.
(key string)
| 23 | Set(key string, val Value) bool |
| 24 | // Has should return true if and only if the property exists. |
| 25 | Has(key string) bool |
| 26 | // Delete the property for the key. Returns true on success (note, that includes missing property). |
| 27 | Delete(key string) bool |
| 28 | // Keys returns a list of all existing property keys. There are no checks for duplicates or to make sure |
no outgoing calls
no test coverage detected