Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TStripedMapBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ForEach
(
FunctionType&& InFunction |
Calls a function on all elements of the map with exclusive access (elements can be modified). | Containers/StripedMap.h | |
void ForEach
(
FunctionType&& InFunction |
Calls a function on all elements of the map with shared access (elements can only be read). | Containers/StripedMap.h |
ForEach(FunctionType &&)
Description
Calls a function on all elements of the map with exclusive access (elements can be modified).
| Name | ForEach |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StripedMap.h |
| Include Path | #include "Containers/StripedMap.h" |
template<typename FunctionType>
void ForEach
(
FunctionType && InFunction
)
Parameters
| Name | Remarks |
|---|---|
| InFunction | The callback to run on each Pair of the map. |
ForEach(FunctionType &&)
Description
Calls a function on all elements of the map with shared access (elements can only be read).
| Name | ForEach |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StripedMap.h |
| Include Path | #include "Containers/StripedMap.h" |
template<typename FunctionType>
void ForEach
(
FunctionType && InFunction
) const
Parameters
| Name | Remarks |
|---|---|
| InFunction | The callback to run on each Pair of the map. |