Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArrayView
Description
Iterate over all set bits from StartBit to EndBit (inclusive) 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