Stores key–value data locally in device memory.
Returns the value associated with the specified key.
non-null key to look up.
the stored value, or null if no value is associated with the key.
Stores the given value under the specified key. If an entry with the same key already exists, it will be overwritten.
non-null key that identifies the stored value.
value to store.
Removes the value associated with the specified key, if present.
non-null key of the entry to delete.
A simple key–value store for string data.
Each entry maps a non-null key to a `string` value. Keys are case-sensitive and unique within the store. Values may be `null`.