Navigation
API > API/Runtime > API/Runtime/IrisCore
Description
Serializes a single bit indicating whether the value is equal to another value or not.
The actual value is never written.
| Name | UE::Net::SerializeSameValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/Serialization/BitPacking.h |
| Include Path | #include "Iris/Serialization/BitPacking.h" |
namespace UE
{
namespace Net
{
template<typename T>
bool UE::Net::SerializeSameValue
(
FNetBitStreamWriter & Writer,
const T Value,
const T OtherValue
)
}
}
true if the Value was equal to OtherValue, false if not.