(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
(hash-label obj)
(hash-label obj & more)
Returns a keyword repesentation of the hash-code. For use in generating internally unique keys
(hash-label 1) => "1" (hash-label "a" "b" "c") => "97_98_99" (hash-label "abc") => "96354"
Returns a keyword repesentation of the hash-code. For use in generating internally unique keys (hash-label 1) => "__1__" (hash-label "a" "b" "c") => "__97_98_99__" (hash-label "abc") => "__96354__"
(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"
(keystring obj)
returns the keystring value
(keystring :hello) => "hello"
(keystring "hello") => "hello"
returns the keystring value (keystring :hello) => "hello" (keystring "hello") => "hello"
(keyword obj)
returns the keyword value
(keyword :hello) => :hello
(keyword "hello") => :hello
returns the keyword value (keyword :hello) => :hello (keyword "hello") => :hello
(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
(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]
(sid)
Returns a short id string
(sid) ;; "t8a6euzk9usy" => string?
Returns a short id string (sid) ;; "t8a6euzk9usy" => string?
(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
(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 %)
(url path)
Returns a java.net.URL
object
(uri "http://www.google.com") => #(instance? java.net.URL %)
Returns a `java.net.URL` object (uri "http://www.google.com") => #(instance? java.net.URL %)
(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"
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close