- dict-pop! dto dictprocedure
Chooses an association from dict and returns three values: a dictionary that contains all associations of dict except the chosen one, the key, and the value of the association chosen. If the dictionary is inherently ordered, the first association is chosen; otherwise, the chosen association is arbitrary.
If dict contains no associations, it is an error.
(dict-pop! dto dict) ⇒ ; 3 values ((3 . 4) (5 . 6)) 1 2