UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IdentityFunctor.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
7// nb: this was copied over from Core until uLang can properly depend on Core.
8
9namespace uLang
10{
15{
16 template <typename T>
18 {
19 return (T&&)Val;
20 }
21};
22}
#define ULANG_FORCEINLINE
Definition Common.h:188
float Val(const FString &Value)
Definition UnrealMath.cpp:3163
Definition VVMEngineEnvironment.h:23
Definition IdentityFunctor.h:15
ULANG_FORCEINLINE T && operator()(T &&Val) const
Definition IdentityFunctor.h:17