Navigation
API > API/Runtime > API/Runtime/Engine
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Tries to cast a value to a derived type. | Materials/MaterialIR.h | ||
| Tries to cast a value to a derived type. | Materials/MaterialIR.h |
MIR::As(FValue *)
Description
Tries to cast a value to a derived type. If specified value is not null, it tries to cast this value T and returns it. Otherwise, it returns null.
| Name | MIR::As |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Materials/MaterialIR.h |
| Include Path | #include "Materials/MaterialIR.h" |
namespace MIR
{
template<typename T>
T * MIR::As
(
FValue * Value
)
}
MIR::As(const FValue *)
Description
Tries to cast a value to a derived type. If specified value is not null, it tries to cast this value T and returns it. Otherwise, it returns null.
| Name | MIR::As |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Materials/MaterialIR.h |
| Include Path | #include "Materials/MaterialIR.h" |
namespace MIR
{
template<typename T>
const T * MIR::As
(
const FValue * Value
)
}