Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArrayView
Description
Combine this array with the result of a bitwise operation of two other arrays. eg: ThisArray = ThisArray Op (ArrayA Op2 ArrayB)
| Name | CombineMultiple |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/NetBitArray.h |
| Include Path | #include "Net/Core/NetBitArray.h" |
template<typename WordOpFunctor1, typename WordOpFunctor2>
void CombineMultiple
(
WordOpFunctor1 && Op,
const FNetBitArrayView & ArrayA,
WordOpFunctor2 && Op2,
const FNetBitArrayView & ArrayB
)
Parameters
| Name | Remarks |
|---|---|
| Op | Operation to execute on the word of this array and the result of the operation on the two other arrays |
| ArrayA | The first bit array to execute the other operation on |
| Op2 | The operation to execute on the word of the read-only array passed in parameter |
| ArrayB | The second bit array to execute the other operation on |
See Also
-
FNetBitArrayHelper::AndOp
-
FNetBitArrayHelper::AndNotOp
-
FNetBitArrayHelper::OrOp
-
FNetBitArrayHelper::XorOp