![]() |
Home | Libraries | People | FAQ | More |
boost::pfr::is_reflectable
// In header: <boost/pfr/traits.hpp> template<typename T, typename WhatFor> struct is_reflectable { };
Has a static const member variable value
when it is known that type T can or can't be reflected using Boost.PFR; otherwise, there is no member variable. Every user may (and in some difficult cases - should) specialize is_reflectable on his own.
Example:
![]() |
Note |
---|---|
is_reflectable affects is_implicitly_reflectable, the decision made by is_reflectable is used by is_implicitly_reflectable. |