我有一个功能:
(defn myfunc [x y z] ....does something interesting here )
我有一组数据组:
(def mydata [[:a1 :b1 :c1] [:a2 :b2 :c2] [:a3 :b3 :c3]])
我想调用myfunc三次,例如:
(myfunc :a1 :b1 :c1)
(myfunc :a2 :b2 :c2)
(myfunc :a3 :b3 :c3)
我有一个模糊的理解,这将包括映射和解构?除此之外,我被卡住了..