WritePackedULongDelta(ulong, ulong, in StreamCompressionModel)
Writes a delta 8-byte unsigned long value to the data stream using a StreamCompressionModel. Note that the unsigned long values are cast to a signed long after computing the diff.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
WritePackedULongDelta(ulong, ulong, StreamCompressionModel)
public bool WritePackedULongDelta(ulong value, ulong baseline, in StreamCompressionModel model)
Parameters
The current 8-byte unsigned long value.
The previous 8-byte unsigned long, used to compute the diff.
StreamCompressionModel model for writing value in a packed manner.
Returns
Type | Description |
|---|---|
| bool | Whether the write was successful |