Hi, I am having a bit of difficulty with Lists in Clojure I have a quick question concerning the filter function
Let's say I have a List composed of Maps My code is:
(def Person {:name Bob } ) (def Person2 {:name Eric } ) (def Person3 {:name Tim } ) (def mylist (list Person Person2 Person3))
How would i go about filtering my list so that , for example: I want the list minus Person2 (meaning minus any map that has :name
Eric)
Thank you very much to everybody helping me out. This is my last question I promise