basilisp.reflect¶
Runtime reflection of Python objects.
- typePythonReflector¶
- fn (reflect o)[source]¶
Reflect the object
oand return details about its type as a map.If
ois a Python class (that is, it is an instance oftype), then […]If
ois a callable (function, coroutine, method, builtin, etc.), then […]If
ois a Python module, then […]If
ois an object, then return the results of(reflect (type o)).If
oisnil, returnnil.