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.
(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}.
(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.
(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}
(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}.
(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.
(visibility m)
Return Member visibility as :public, :protected, :package, or :private.
Return Member visibility as :public, :protected, :package, or :private.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close