Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArray
Description
Iterate over all set bits and invoke functor with signature void(uint32 BitIndex). EndBit is clamped to the the number of bits in the array minus one.
| Name | ForAllSetBitsInRange |
| 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 ForAllSetBitsInRange
(
const uint32 StartBit,
const uint32 EndBit,
T && Functor
) const