Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现
(defn applied [fn] #(apply fn %))
是一个非常常见的函数转换实用程序。clojure stdlib 中是否有内置实现?
我认为这符合您的描述:
(partial apply fn)