Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/ParticleHelper.h |
| Include | #include "ParticleHelper.h" |
Syntax
template<typename ElementType>
class TPreallocatedArrayProxy
Remarks
Helper class that provides a basic interface for an inline and presized array within a contiguous memory block
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Constructor, just zeros everything | |||
TPreallocatedArrayProxy
(
uint8* ArrayStart, |
Constructor, just sets up the array pointer and size |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | Contains
(
const ElementType& Item |
Checks if the array contains an element with the given value. | |
| int32 | Find
(
const ElementType& Item |
Finds an element with the given value in the array. | |
| int32 | Num () |
Operators
| Type | Name | Description | |
|---|---|---|---|
| ElementType & | operator[]
(
int32 Index |
Accesses the identified element's value. | |
| const ElementType & | operator[]
(
int32 Index |
Accesses the identified element's value. |