|
template<class To , class From , typename std::enable_if<(detail::is_erasure_castable< To, From >::value &&(sizeof(To)==sizeof(From))), bool >::type = true> |
constexpr To | erasure_cast (const From &from, detail::bit_cast_equivalence_overload={}) noexcept |
| Erasure cast implementation chosen if types are move relocating or trivally copyable, have identical size, and are bit castable. Constexpr. Forwards to bit_cast() directly.
|
|
template<class To , class From , typename std::enable_if<(detail::is_erasure_castable< To, From >::value &&detail::is_static_castable< To, From >::value &&(sizeof(To)< sizeof(From))), bool >::type = true> |
constexpr To | erasure_cast (const From &from, detail::static_cast_dest_smaller_overload={}) noexcept |
| Erasure cast implementation chosen if types are move relocating or trivally copyable, are statically castable, and destination type is smaller than source type. Constexpr.
|
|
template<class To , class From , typename std::enable_if<(detail::is_erasure_castable< To, From >::value &&detail::is_static_castable< To, From >::value &&(sizeof(To) > sizeof(From))), bool >::type = true> |
constexpr To | erasure_cast (const From &from, detail::static_cast_dest_larger_overload={}) noexcept |
| Erasure cast implementation chosen if types are move relocating or trivally copyable, are statically castable, and destination type is larger than source type. Constexpr.
|
|
template<class To , class From , typename std::enable_if<(detail::is_erasure_castable< To, From >::value &&!detail::is_static_castable< To, From >::value &&(sizeof(To)< sizeof(From))), bool >::type = true> |
constexpr To | erasure_cast (const From &from, detail::union_cast_dest_smaller_overload={}) noexcept |
| Erasure cast implementation chosen if types are move relocating or trivally copyable, are union castable, and destination type is smaller than source type. May be constexpr if underlying bit cast is constexpr.
|
|
template<class To , class From , typename std::enable_if<(detail::is_erasure_castable< To, From >::value &&!detail::is_static_castable< To, From >::value &&(sizeof(To) > sizeof(From))), bool >::type = true> |
constexpr To | erasure_cast (const From &from, detail::union_cast_dest_larger_overload={}) noexcept |
| Erasure cast implementation chosen if types are move relocating or trivally copyable, are union castable, and destination type is larger than source type. May be constexpr if underlying bit cast is constexpr.
|
|