The type-info tag has no wiki summary.
1
vote
1answer
83 views
std::exception.what() returns unexpected value on clang and gcc, but not on VS11
The contents of the C string returned by std::exception.what() and its derived classes is implementation defined, but clang, gcc, and Visual Studio return C strings that indicate the name of the ...
0
votes
2answers
88 views
Recursively check super class type_info
Is there a way to check what the type_info of a superclass is?
In my system objects are identified by a set of bits. Which is Identified by the type_info hashcode. I would like some of these types to ...
8
votes
2answers
185 views
Determine whether a value is a function in Haskell
Is it possible to write a function isFunc :: a -> Bool to determine whether an arbitrary value is a function (of any kind) such that
foo :: Int -> Int
bar :: Char -> Char -> Char
...
-1
votes
3answers
373 views
find out identifer name and typeid of the object or variable in C++?
I've started learnig C++ (year ago) mostly because it's univerzal language IMO, and beacause almost everything is possible.
but one thing isn't so:
for example we are writing some code inside an ...
5
votes
4answers
721 views
What is `type_info::before` useful for?
According the cplusplus.com, the std::type_info::before() function...
Returns true if the type precedes the type of rhs in the collation order.
The collation order is just an internal order kept ...
2
votes
2answers
444 views
how to create a container that takes one object of each kind?
I tried to create a container for posible metadata that can be attached to my objects. I can guarantee that there will be at most one object af each kind attached to my class but there is no limit for ...
2
votes
2answers
665 views
Why is std::type_info noncopyable? Am I allowed to store it somewhere?
The std::type_info class is non-copyable. This makes it hard to store it in an object for later use. I spent some time trying to make an object wrapper that allows me to do this. I'm not sure if it is ...
1
vote
2answers
776 views
C++ : Mixing : boost::any + typeid + pointer : clone 'generic' value if it is a pointer
Here is what I would like to do:
From a boost::any I would like to know it is a pointer type.
If it is a pointer, I have to clone it
Something like this :
boost::any value= new ...
8
votes
2answers
323 views
Why is type_info::name() unspecified?
I'm fully aware that the return value of std::type_info::name() is implementation-defined.
From the C++ standard (ISO/IEC 14882:2003 ยง18.5.1.7):
Returns: an implementation-defined NTBS.
My ...