Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArrayView
Description
Compare two BitArrays bit by bit. Where they differ and Predicate(BitIndex) returns true FunctorA(BitIndex) is invoked for bits set only in array A and FunctorB(BitIndex) is invoked for bits set only in array B.
| Name | ForAllExclusiveBitsByPredicate |
| 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, typename Predicate>
static void ForAllExclusiveBitsByPredicate
(
const FNetBitArrayView & A,
const FNetBitArrayView & B,
T && FunctorA,
V && FunctorB,
Predicate && Pred
)