Liking cljdoc? Tell your friends :D
Clojure only.

clojure.contrib.djui.nilable

Nilable (Nullable) helper functions.

Nilable (Nullable) helper functions.
raw docstring

?>=clj

(?>= & more)

Nilable variant of >=, but also returns false if only first argument is nil or true if all arguments are nil.

Nilable variant of >=, but also returns false if only first argument is nil
or true if all arguments are nil.
sourceraw docstring

coalescecljmacro

(coalesce)
(coalesce x)
(coalesce x & rest)

Returns nil if all of its arguments are nil, otherwise it returns the first non-nil argument. Similar to (first (filter #(not (nil? %)) coll)) but takes arguments instead of a collection.

Returns nil if all of its arguments are nil, otherwise it returns the first
non-nil argument. Similar to (first (filter #(not (nil? %)) coll)) but takes
arguments instead of a collection.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close