Name
remove — Remove key/value pair from a map
Synopsis
map
remove
( |
map
| MAP
, |
|
any
| KEY
) ; |
Description
Remove the value with the key KEY
from a map. Returns nil if the key is invalid.
Usage
remove($[1:2], 0) -> nil
remove($[1:2], 1) -> $[]
remove ($[1:2, 3:4], 1) -> $[3:4]