Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IsAnyBitSet () |
Returns true if any bit is set in the bitset. | Net/Core/NetBitArray.h | |
bool IsAnyBitSet
(
uint32 StartIndex, |
Returns true if any bit is set in the specified range. | Net/Core/NetBitArray.h |
IsAnyBitSet()
Description
Returns true if any bit is set in the bitset. Note: Padding bits in storage are expected to be zero.
| Name | IsAnyBitSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/NetBitArray.h |
| Include Path | #include "Net/Core/NetBitArray.h" |
bool IsAnyBitSet() const
IsAnyBitSet(uint32, uint32)
Description
Returns true if any bit is set in the specified range. The range will be clamped if needed. Note: Padding bits in storage are expected to be zero.
| Name | IsAnyBitSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/NetBitArray.h |
| Include Path | #include "Net/Core/NetBitArray.h" |
bool IsAnyBitSet
(
uint32 StartIndex,
uint32 Count
) const