For example, I want a function that gives me all the values assigned to the one I give:
-> (giveme 'x '((x y) (x z) (b d) (x q)))
-> (y z q)
So the function should return in this case y z and q, as these are associated to x in pairs. Reason I ask this because I know there is a map function for it in one line.