3

我正在寻找“-?>”,它与“->”的工作方式相同,除非其中一个线程函数返回 nil。如果在线程处理过程中遇到 nil,则线程表达式的返回值为 nil。有用。

这是我发现提到这件事的地方。 http://clojuredocs.org/clojure_contrib/clojure.contrib.core/-_q%3E

从上面的网站

Same as clojure.core/-> but returns nil as soon as the threaded value is nil itself (thus short-circuiting any pending computation).
Examples :
(-?> "foo" .toUpperCase (.substring 1)) returns "OO"
(-?> nil .toUpperCase (.substring 1)) returns nil

我在clojure 1.4上。

什么/在哪里/如何访问此功能?谢谢你。

4

1 回答 1

4

去哪儿了clojure.contribclojure.contrib.core(部分)迁移到clojure.core.incubator. 这包括旧的-?>宏。

于 2012-09-28T18:27:24.957 回答