TRemovePointer

Removes one level of pointer from a type, e.g.:

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Templates/UnrealTemplate.h

Include

#include "Templates/UnrealTemplate.h"

Syntax

template<typename T>
struct TRemovePointer

Remarks

Removes one level of pointer from a type, e.g.:

TRemovePointer< int32 >::Type == int32 TRemovePointer< int32* >::Type == int32 TRemovePointer< int32**>::Type == int32* TRemovePointer<const int32* >::Type == const int32

Specializations

Typedefs

Name

Description

Type

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss