UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IsConst.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
7// HEADER_UNIT_SKIP - Deprecated
8
9//UE_DEPRECATED_HEADER(5.7, "IsConst.h has been deprecated- please include <type_traits> and use std::is_const instead.")
10
14template <typename T>
15struct UE_DEPRECATED(5.7, "TIsConst has been deprecated - please use std::is_const instead.") TIsConst
16{
17 static constexpr bool Value = false;
18};
19
20template <typename T>
21struct UE_DEPRECATED(5.7, "TIsConst has been deprecated - please use std::is_const instead.") TIsConst<const T>
22{
23 static constexpr bool Value = true;
24};
#define UE_DEPRECATED(Version, Message)
Definition CoreMiscDefines.h:302
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127