Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetBitArray
Description
Combine this array with another array using a word operation functor. Bit counts need to match.
| Name | Combine |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/NetBitArray.h |
| Include Path | #include "Net/Core/NetBitArray.h" |
template<typename WordOpFunctor>
void Combine
(
const FNetBitArray & Other,
WordOpFunctor && WordOp
)
Parameters
| Name | Remarks |
|---|---|
| Other | The other array to combine with. |
| WordOpFunctor | The operation to perform for each word to combine. Signature is StorageWordType(StorageWordType ThisWord, StorageWordType OtherWord). |
See Also
-
FNetBitArrayHelper::AndOp
-
FNetBitArrayHelper::AndNotOp
-
FNetBitArrayHelper::OrOp
-
FNetBitArrayHelper::XorOp