I have hash-maps and I'm trying to get the intersection between the keys. But the function 'intersection' just work with sets.
So I'm getting the keys, transforming the keys to sets and then calling the intersection, something like this:
(intersection (set (keys map-1)) (set (keys map-2)))
There are a better way to do that?
Thanks