WPILibC++ 2024.3.2
|
This struct provides a way to check if a given cast is possible. More...
#include </home/runner/work/allwpilib/allwpilib/wpiutil/src/main/native/thirdparty/llvm/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 |