Dict-Values

(dict-values dictionary) -> list

Returns the values of dictionary, as a list.

Example:

>>(define a (dict '(alpha 1) '(beta 2) '(gamma 3)))
:: #f
>>(dict-values a)
:: ((3) (2) (1))

See Also: dict-keys