Navigation
API > API/Plugins > API/Plugins/WorldMetricsCore > API/Plugins/WorldMetricsCore/FWorldMetricCollection
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ForEach
(
FuncType&& Func |
Invokes the parameter function on each of the metrics contained by the collection. | WorldMetricCollection.h | |
void ForEach
(
FuncType&& Func |
WorldMetricCollection.h | ||
void ForEach
(
FuncType&& Func |
Invokes the parameter function on each of the metrics of the specified type contained by the collection. | WorldMetricCollection.h | |
void ForEach
(
FuncType&& Func |
WorldMetricCollection.h |
ForEach(FuncType &&)
Description
Invokes the parameter function on each of the metrics contained by the collection.
| Name | ForEach |
| Type | function |
| Header File | /Engine/Plugins/WorldMetrics/Source/WorldMetricsCore/Public/WorldMetricCollection.h |
| Include Path | #include "WorldMetricCollection.h" |
template<typename FuncType>
void ForEach
(
FuncType && Func
) const
Parameters
| Name | Remarks |
|---|---|
| Func | The function which will be invoked for each metric. The function should return true to continue execution, or false otherwise. |
ForEach(FuncType &&)
| Name | ForEach |
| Type | function |
| Header File | /Engine/Plugins/WorldMetrics/Source/WorldMetricsCore/Public/WorldMetricCollection.h |
| Include Path | #include "WorldMetricCollection.h" |
template<typename FuncType>
void ForEach
(
FuncType && Func
)
ForEach(FuncType &&)
Description
Invokes the parameter function on each of the metrics of the specified type contained by the collection.
| Name | ForEach |
| Type | function |
| Header File | /Engine/Plugins/WorldMetrics/Source/WorldMetricsCore/Public/WorldMetricCollection.h |
| Include Path | #include "WorldMetricCollection.h" |
template<typename MetricType, typename FuncType>
void ForEach
(
FuncType && Func
) const
Parameters
| Name | Remarks |
|---|---|
| Func | The function which will be invoked for each metric of the specified type. The function should return true to continue execution, or false otherwise. |
ForEach(FuncType &&)
| Name | ForEach |
| Type | function |
| Header File | /Engine/Plugins/WorldMetrics/Source/WorldMetricsCore/Public/WorldMetricCollection.h |
| Include Path | #include "WorldMetricCollection.h" |
template<typename MetricType, typename FuncType>
void ForEach
(
FuncType && Func
)