Liking cljdoc? Tell your friends :D

org.timmc.handy.reflect

Synthetic members are omitted unless the :show-synthetic option is enabled. Inherited members are omitted unless the :ancestors option is enabled.

Synthetic members are omitted unless the :show-synthetic option is
enabled. Inherited members are omitted unless the :ancestors option is
enabled.
raw docstring

constructorsclj

(constructors c)
(constructors c opts)

Return constructors as maps of {:type :constructor, :params [Class...], :varargs? bool, :visibility? kw, :owner c, :synthetic? bool}.

Return constructors as maps of {:type :constructor, :params [Class...],
:varargs? bool, :visibility? kw, :owner c, :synthetic? bool}.
sourceraw docstring

dedupeclj

(dedupe keyfn beats? vs)

Given zero or more values, remove duplicates. keyfn maps values to keys (in the DB sense) -- matching return values mean the inputs are duplicates. beats? [a b -> bool] resolves the conflicts -- a logical-true return indicates that a is preferred in deduplication with b.

Given zero or more values, remove duplicates. keyfn maps values to keys (in
the DB sense) -- matching return values mean the inputs are duplicates.
beats? [a b -> bool] resolves the conflicts -- a logical-true return
indicates that a is preferred in deduplication with b.
sourceraw docstring

fieldsclj

(fields c)
(fields c opts)

Return fields as maps of {:type :field, :name String, :return Class, :visibility? kw, :static? bool, :owner Class, :synthetic? bool}

Return fields as maps of {:type :field, :name String, :return Class,
:visibility? kw, :static? bool, :owner Class, :synthetic? bool}
sourceraw docstring

methodsclj

(methods c)
(methods c opts)

Return methods as maps of {:type :method, :name String, :return Class, :params [Class...], :varargs? bool, :abstract? bool, :visibility? kw, :static? bool, :owner c, :synthetic? bool}.

Return methods as maps of {:type :method, :name String, :return Class,
:params [Class...], :varargs? bool, :abstract? bool, :visibility? kw,
:static? bool, :owner c, :synthetic? bool}.
sourceraw docstring

recurse-membersclj

(recurse-members f c opts)

Run the members function f (with given options map opts) against c and all of its ancestors, then remove shadowed members.

Run the members function f (with given options map opts) against c
and all of its ancestors, then remove shadowed members.
sourceraw docstring

vis>=clj

(vis>= to-check threshold)
source

visibilityclj

(visibility m)

Return Member visibility as :public, :protected, :package, or :private.

Return Member visibility as :public, :protected, :package, or :private.
sourceraw docstring

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

× close