A capability of some object-oriented programming languages to determine the type of an object at runtime.
In Objective-C I can test whether a given class or instance responds to certain selectors. But how can query a …
objective-c introspection objective-c-runtimeI know how to print "all" global variables using the following code for k,v in pairs(_G) do print("…
lua introspectionWhat does the / mean in Python 3.4's help output for range before the closing parenthesis? >>> help(range) …
python python-3.x parameters introspectionI've already seen the following question but it doesn't quite get me where I want: How can I get a …
python introspection python-2.7I need a way to pass a property and get the name assigned to it. Any suggestions? @property (nonatomic, retain) …
objective-c introspection objective-c-runtime declared-propertyI'm using Python 2.x and I have an object I'm summoning from the aether; the documentation on it is not …
python introspection python-datamodelWhat's the shortest, one-liner way to list all methods defined with attr_accessor? I would like to make it so, …
ruby introspectionIf I have a UIViewController subclass, how can I get the class name as string? I've tried doing [vc class], …
ios objective-c cocoa-touch introspectionThere is large python project where one attribute of one class just have wrong value in some place. It should …
python debugging introspection pdbI am trying to obtain class information on a field inside a model, when I only know name of the …
python django-models introspection