Data Inspection
Implementation detail. Subject to change.
valueclojure.data
Implementation detail. Subject to change.
valueclojure.data
Recursively compares a and b, returning a tuple of [things-only-in-a things-only-in-b things-in-both]. Comparison ru...
functionclojure.data
Implementation detail. Subject to change.
protocol-methodclojure.data
Implementation detail. Subject to change.
protocol-methodclojure.data
- function
clojure.inspector
- function
clojure.inspector
- multimethod
clojure.inspector
- multimethod
clojure.inspector
creates a graphical (Swing) inspector on the supplied object
functionclojure.inspector
creates a graphical (Swing) inspector on the supplied regular data, which must be a sequential data structure of data ...
functionclojure.inspector
creates a graphical (Swing) inspector on the supplied hierarchical data
functionclojure.inspector
- multimethod
clojure.inspector
- function
clojure.inspector
- multimethod
clojure.inspector
- function
clojure.inspector
- multimethod
clojure.inspector
- function
clojure.inspector
Positional factory function for class clojure.reflect.AsmReflector.
functionclojure.reflect
Positional factory function for class clojure.reflect.Constructor.
functionclojure.reflect
Positional factory function for class clojure.reflect.Field.
functionclojure.reflect
Positional factory function for class clojure.reflect.JavaReflector.
functionclojure.reflect
Positional factory function for class clojure.reflect.Method.
functionclojure.reflect
- value
clojure.reflect
Protocol for reflection implementers.
valueclojure.reflect
A TypeReference can be unambiguously converted to a type name on the host platform. All typerefs are normalized i...
valueclojure.reflect
- protocol-method
clojure.reflect
The Java access bitflags, along with their friendly names and the kinds of objects to which they can apply.
valueclojure.reflect
Factory function for class clojure.reflect.Constructor, taking a map of keywords to field values.
functionclojure.reflect
Factory function for class clojure.reflect.Field, taking a map of keywords to field values.
functionclojure.reflect
Factory function for class clojure.reflect.Method, taking a map of keywords to field values.
functionclojure.reflect
Alpha - subject to change. Reflect on the type of obj (or obj itself if obj is a class). Return value and options ...
functionclojure.reflect
Given a class name, return that typeref's class bytes as an InputStream.
protocol-methodclojure.reflect
Alpha - subject to change. Reflect on a typeref, returning a map with :bases, :flags, and :members. In the discussi...
functionclojure.reflect
Returns Java name as returned by ASM getClassName, e.g. byte[], java.lang.String[]
protocol-methodclojure.reflect
Walking
10Recursively transforms all map keys from strings to keywords.
functionclojure.walk
Recursively performs all possible macroexpansions in form.
functionclojure.walk
Performs a depth-first, post-order traversal of form. Calls f on each sub-form, uses f's return value in place of the...
functionclojure.walk
Demonstrates the behavior of postwalk by printing each form as it is walked. Returns form.
functionclojure.walk
Recursively transforms form by replacing keys in smap with their values. Like clojure/replace but works on any data s...
functionclojure.walk
Like postwalk, but does pre-order traversal.
functionclojure.walk
Demonstrates the behavior of prewalk by printing each form as it is walked. Returns form.
functionclojure.walk
Recursively transforms form by replacing keys in smap with their values. Like clojure/replace but works on any data s...
functionclojure.walk
Recursively transforms all map keys from keywords to strings.
functionclojure.walk
Traverses form, an arbitrary data structure. inner and outer are functions. Applies inner to each element of form, b...
functionclojure.walk