A trait in C++ encapsulates a family of operations that allow an Algorithm or Data Structure to operator with that type with which it is instantiated. char_traits are an example for grouping string- and file-required functions.
But not all traits have "trait" in their name, right? numeric_limits comes to mind. Is this a "Trait", too? Even without the name "trait" in it?
So, are there other Templates that could/should be considered a "Trait"? Besides the examples I found:
allocator_traitshow to get memorypointer_traitshow to access an object indirectlytype_traitsmeta programmingchar_taitsfor sequence of symbolsiterator_traitshow to get forward, backward and to the elementregex_traitsfor... regexes.
I guess, what I am asking, too, is there a pure definition for traits?
Some things I am especially unsure about are:
numeric_limitsmentioned above<chrono>s customization "traits", [20.11.4], i.e.duration_values- what about Hashing? Can the functor
hash<>be considered to be a trait? - If thats the case, are not all requirements "traits", like "CopyAssignable", etc?
- And then, are the abandoned "Concepts" the ultimate "trait"-Definition?
Update: The question what exactly makes a trait a trait seems a bit controversy in the details. Maybe a another question could be answered: Is there a comprehensive list which of the trait-like classes are new to C++0x, and which ones have already been in C++03? Maybe someone knows of a link to somewhere?
hash<>is properly considered a trait class, because it does more than just provide compile-time information about the class. How about this definition: "A template class with no non-static members, whose static members depend only on the template argument." – Nemo Jul 16 '11 at 18:40numeric_limitsisn't strictly a trait class, because its values aren't all compile-time static constants orconstexpr-- you have things likemax()which is a runtime value. – Kerrek SB Jul 16 '11 at 18:54char_traitsare strictly compile-time:lengthorcomparemust be evaluated at runtime, too. And as the name suggests, it is considered a trait class. – Vitus Jul 17 '11 at 11:36numeric_limitsis a perfectly valid traits class. It has no state, and simply supplies information about a type. The fact that some of its information is in the form of static functions doesn't make it less of a traits class, IMO – jalf Jul 31 '11 at 13:03