Navigation
API > API/Runtime > API/Runtime/TypedElementFramework
Storage for batch of objects used in a query. Batches provide the following guarantees:
- Contiguous in memory up to the number of entries in the batch.
- All values apply to the same table.
| Name | TBatch |
| Type | class |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryFunctionArgumentTypes.h |
| Include Path | #include "Elements/Framework/TypedElementQueryFunctionArgumentTypes.h" |
Syntax
template<typename T>
class TBatch
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBatch () |
Elements/Framework/TypedElementQueryFunctionArgumentTypes.h | ||
TBatch
(
T* Values |
Elements/Framework/TypedElementQueryFunctionArgumentTypes.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Values | T * | Elements/Framework/TypedElementQueryFunctionArgumentTypes.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
T * GetData () |
Returns a pointer to the stored column. | Elements/Framework/TypedElementQueryFunctionArgumentTypes.h | |
const T * GetData () |
Returns a pointer to the stored column. | Elements/Framework/TypedElementQueryFunctionArgumentTypes.h | |
TArrayView< T > GetView
(
int32 BatchSize |
Provides direct access to the stored objects. | Elements/Framework/TypedElementQueryFunctionArgumentTypes.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBatch & operator=
(
T* InValues |
Elements/Framework/TypedElementQueryFunctionArgumentTypes.h |