A capability of some object-oriented programming languages to determine the type of an object at runtime.
I'm currently going to write big project in c++11. I'm searching for some time good c++11/c++ reflection library and …
c++ reflection c++11 introspectionI'm hoping that Ruby's message-passing infrastructure means there might be some clever trick for this. How do I determine the …
ruby messaging introspection dynamic-languagesIn the spirit of the c# question.. What is the equivalent statements to compare class types in VB.NET?
java vb.net reflection introspection instanceofGiven any object I can call #public_methods and see all the methods it will respond to. However, I find …
ruby introspection public-methodWhat is a way to extract arguments from __init__ without creating new instance. The code example: class Super: def __init__(…
python oop arguments introspectionIf I have a python function like so: def some_func(arg1, arg2, arg3=1, arg4=2): Is there a way to …
python introspection keyword-argumentI am wondering if there is a Ruby method call that shows only the methods defined by the Ruby object …
ruby introspectionWhy is it important to add an include for .moc file in a Qt cpp source code? This is a …
c++ qt introspection mocConsidering this code (and using SQLAlchemy 0.7.7): class Document(Base): __tablename__ = 'document' __table_args__ = { 'schema': 'app' } id = Column(types.Integer, primary_…
python inheritance sqlalchemy introspectionIs it possible to retrieve any class information from a frame object? I know how to get the file (frame.…
python introspection