Clamps Dictionary
map-proplist
Macro
(map-proplist fn proplist)
Like mapcar but traversing a property list. fn has to accept two values, the key and the value of each property in the proplist.
Arguments
fn |
Function to apply to all entries of the property list. |
proplist |
Property list to traverse. |
Example
(map-proplist #'list '(:a 2 :b 5 :c 4)) ; => ((:a 2) (:b 5) (:c 4))
Created: 2025-02-18 Di 12:58