WPILibC++ 2025.2.1
|
Provides a cast trait that strips const
from types to make it easier to implement a const-version of a non-const cast.
More...
#include <wpi/Casting.h>
Public Types | |
using | DecayedFrom = std::remove_cv_t<std::remove_pointer_t<From>> |
using | NonConstFrom |
Static Public Member Functions | |
static bool | isPossible (const From &f) |
static decltype(auto) | castFailed () |
static decltype(auto) | doCast (const From &f) |
static decltype(auto) | doCastIfPossible (const From &f) |
Provides a cast trait that strips const
from types to make it easier to implement a const-version of a non-const cast.
It just removes boilerplate and reduces the amount of code you as the user need to implement. You can use it like this:
template<> struct CastInfo<foo, bar> { ...verbose implementation... };
template<> struct CastInfo<foo, const bar> : public ConstStrippingForwardingCast<foo, const bar, CastInfo<foo, bar>> {};
using wpi::ConstStrippingForwardingCast< To, From, ForwardTo >::DecayedFrom = std::remove_cv_t<std::remove_pointer_t<From>> |
using wpi::ConstStrippingForwardingCast< To, From, ForwardTo >::NonConstFrom |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |