- dict-delete! dto dict key ...procedure
Returns a dictionary that contains all the associations of dict except those whose keys are the same as one of the keys.
(dict-delete! dto dict 1 3) ⇒ ((5 . 6)) (dict-delete! dto dict 5) ⇒ ((1 . 2) (3 . 4))
Returns a dictionary that contains all the associations of dict except those whose keys are the same as one of the keys.
(dict-delete! dto dict 1 3) ⇒ ((5 . 6)) (dict-delete! dto dict 5) ⇒ ((1 . 2) (3 . 4))