Liking cljdoc? Tell your friends :D
Clojure only.

fn


andclj

(and f)
(and f & fs)

Functions intersection returns function that returns something, when all intersection's functions returns something.

(and f g h ...) => (fn [xs] (and (f xs) (g xs) (h xs) ...))

Functions intersection returns function that returns something,
when all intersection's functions returns something.

(and f g h ...) => (fn [xs] (and (f xs) (g xs) (h xs) ...))
raw docstring

notclj

(not f)
(not f & fs)

Alias for complement function. When used with more than one argument returns intersection of complementary functions.

(not f) => (complement f) (not f g h ...) => (and (not f) (not g) (not h) ...)

Alias for complement function.
When used with more than one argument returns intersection of
complementary functions.

(not f) => (complement f)
(not f g h ...) => (and (not f) (not g) (not h) ...)
raw docstring

orclj

(or f)
(or f & fs)

Functions union return function that returns something, when one of union's functions returns something.

(or f g h ...) => (fn [xs] (or (f xs) (g xs) (h xs) ...))

Functions union return function that returns something,
when one of union's functions returns something.

(or f g h ...) => (fn [xs] (or (f xs) (g xs) (h xs) ...))
raw docstring

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

× close