I have two hash maps and am trying to merge them together while only keeping the keys found in both maps.
Ex:
{a true, b true, c true, d true, e true}
merged with {c true, d true, e true, f true}
would yield {c true, d true, e true}
I am pretty new to Clojure and just can't seem to figure out how to do this. Thanks
select-keysto select the keys you need from the second map.a => truein the first map anda => truein the second combine to result ina => truein the result.