Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ForAllSetBits
(
T&& Functor |
Iterate over all set bits and invoke functor with signature void(uint32 BitIndex). | Net/Core/NetBitArray.h | |
static void ForAllSetBits
(
const FNetBitArray& A, |
Iterate over all words and execute Functor, with signature void(uint32 BitIndex), for all set bits after executing WordOpFunctor | Net/Core/NetBitArray.h |
ForAllSetBits(T &&)
Description
Iterate over all set bits and invoke functor with signature void(uint32 BitIndex).
| Name | ForAllSetBits |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/NetBitArray.h |
| Include Path | #include "Net/Core/NetBitArray.h" |
template<typename T>
void ForAllSetBits
(
T && Functor
) const
ForAllSetBits(const FNetBitArray &, const FNetBitArray &, T &&, V &&)
Description
Iterate over all words and execute Functor, with signature void(uint32 BitIndex), for all set bits after executing WordOpFunctor
| Name | ForAllSetBits |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/NetBitArray.h |
| Include Path | #include "Net/Core/NetBitArray.h" |
template<typename T, typename V>
static void ForAllSetBits
(
const FNetBitArray & A,
const FNetBitArray & B,
T && WordOpFunctor,
V && Functor
)