barch

REM Command

Removed the key and value associated with a specific key. If the key does not exist (nil) is returned.

Time Complexity O(1) (O(k) where k represents keylength)

Example

B.SET 10 a
B.GET 10
-> a
B.REM 10
-> a
B.GET 10
-> (nil)

Key Types

Key type will be auto-detected on input.

Key Order

See Order for more information on key order