FInlineDataStorage

Implementation of the wrapper utility for any moveable/copyable data, that allows us to virtually move/copy/destruct the data Data is stored inline in this implementation, for efficiency

Windows
MacOS
Linux

Inheritance Hierarchy

IExpressionNodeStorage

FInlineDataStorage

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Misc/ExpressionParserTypes.inl

Include

#include "Misc/ExpressionParserTypes.inl"

Syntax

template<typename T>
struct FInlineDataStorage : public Impl::IExpressionNodeStorage

Remarks

Implementation of the wrapper utility for any moveable/copyable data, that allows us to virtually move/copy/destruct the data Data is stored inline in this implementation, for efficiency

Variables

Name Description

Public variable

T

 

Value

The data itself, allocated on the stack

Constructors

Name Description

Public function

FInlineDataStorage

(
    T InValue
)

Constructor/destructor

Destructors

Name Description

Public function

~FInlineDataStorage()

Functions

Name Description

Public function Const

const T *...

 

Access()

Overridden from IExpressionNodeStorage

Name Description

Public function Virtual Const

FExpressionN...

 

Copy()

Copy this data

Public function Virtual

void

 

MoveAssign

(
    uint8* Dst
)

Move this type to a buffer already allocated to the same type (uses type-defined move-assignment)

Public function Virtual

void

 

Reseat

(
    uint8* Dst
)

Move this type into another unallocated buffer (move-construct a new type from our wrapped value)

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