Liking cljdoc? Tell your friends :D

hara.common.primitives


Fclj

(F & args)

Returns false for any combination of input args

(F) => false (F :hello) => false (F 1 2 3) => false

Returns `false` for any combination of input `args`

(F) => false
(F :hello) => false
(F 1 2 3) => false
raw docstring

instantclj

(instant)
(instant val)

Returns a java.util.Date object

(instant) => #(instance? java.util.Date %)

(instant 0) => #inst "1970-01-01T00:00:00.000-00:00"

Returns a `java.util.Date` object

(instant) => #(instance? java.util.Date %)

(instant 0) => #inst "1970-01-01T00:00:00.000-00:00"
raw docstring

NILclj

(NIL & args)

Returns nil for any combination of input args

(NIL) => nil (NIL :hello) => nil (NIL 1 2 3) => nil

Returns `nil` for any combination of input `args`

(NIL) => nil
(NIL :hello) => nil
(NIL 1 2 3) => nil
raw docstring

queueclj

(queue)
(queue x)
(queue x & xs)

Returns a clojure.lang.PersistentQueue object.

(def a (queue 1 2 3 4)) (pop a) => [2 3 4]

Returns a `clojure.lang.PersistentQueue` object.

(def a (queue 1 2 3 4))
(pop a) => [2 3 4]
raw docstring

Tclj

(T & args)

Returns true for any combination of input args

(T) => true (T :hello) => true (T 1 2 3) => true

Returns `true` for any combination of input `args`

(T) => true
(T :hello) => true
(T 1 2 3) => true
raw docstring

uriclj

(uri path)

Returns a java.net.URI object

(uri "http://www.google.com") => #(instance? java.net.URI %)

Returns a `java.net.URI` object

(uri "http://www.google.com")
=> #(instance? java.net.URI %)
raw docstring

uuidclj

(uuid)
(uuid id)
(uuid msb lsb)

Returns a java.util.UUID object

(uuid) => #(instance? java.util.UUID %)

(uuid "00000000-0000-0000-0000-000000000000") => #uuid "00000000-0000-0000-0000-000000000000"

Returns a `java.util.UUID` object

(uuid) => #(instance? java.util.UUID %)

(uuid "00000000-0000-0000-0000-000000000000")
=> #uuid "00000000-0000-0000-0000-000000000000"
raw docstring

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

× close