WPILibC++ 2025.2.1
|
This struct provides a way to check if a given cast is possible. More...
#include <wpi/Casting.h>
Static Public Member Functions | |
static bool | isPossible (const From &f) |
This struct provides a way to check if a given cast is possible.
It provides a static function called isPossible that is used to check if a cast can be performed. It should be overridden like this:
template<> struct CastIsPossible<foo, bar> { static inline bool isPossible(const bar &b) { return bar.isFoo(); } };
|
inlinestatic |