LLVM 22.0.0git
|
This struct provides a way to check if a given cast is possible. More...
#include "llvm/Support/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 |