LLVM: llvm::CastIsPossible< To, From, Enable (original) (raw)

This struct provides a way to check if a given cast is possible. More...

#include "[llvm/Support/Casting.h](Casting%5F8h%5Fsource.html)"

Inheritance diagram for llvm::CastIsPossible< To, From, Enable >:

Static Public Member Functions
static bool isPossible (const From &f)

Detailed Description

template<typename To, typename From, typename Enable = void>
struct llvm::CastIsPossible< To, From, Enable >

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(); } };

Definition at line 253 of file Casting.h.

Member Function Documentation

isPossible()

template<typename To, typename From, typename Enable = void>


The documentation for this struct was generated from the following file: