A capability of some object-oriented programming languages to determine the type of an object at runtime.
In Java, you can do instanceof. Is there a Ruby equivalent?
ruby inheritance introspectionSuppose o is a Python object, and I want all of the fields of o, without any methods or __stuff__. …
python python-2.7 introspectionI have a Java object obj that has attributes obj.attr1, obj.attr2 etc. The attributes are possibly accessed through …
java introspectionHow can I get a list (in the form of an NSArray or NSDictionary) of a given object properties in …
objective-c class properties attributes introspectionI am trying to dynamically create a class instance based type using generics, however I am encountering difficulty with class …
introspection swiftI'm fairly new to JavaScript and am not sure this is possible to do but basically I would like to …
javascript reflection introspectionSuppose myapp/foo.py contains: def info(msg): caller_name = ???? print '[%s] %s' % (caller_name, msg) And myapp/bar.…
python stack-trace introspectionCan any one explain the use of Java reflection and introspection? When we need to use both?
java reflection introspectionI have been trying to determine the type of a field in a class. I've seen all the introspection methods …
java generics reflection types introspectionI have a dict, which I need to pass key/values as keyword arguments.. For example.. d_args = {'kw1': …
python arguments introspection