UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
RemoveExtent.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6
10template <typename T> struct TRemoveExtent { typedef T Type; };
11template <typename T> struct TRemoveExtent<T[]> { typedef T Type; };
12template <typename T, uint32 N> struct TRemoveExtent<T[N]> { typedef T Type; };
T Type
Definition RemoveExtent.h:12
T Type
Definition RemoveExtent.h:11
Definition RemoveExtent.h:10
T Type
Definition RemoveExtent.h:10