public sealed class RiceDeltaEncoding : IMessage<RiceDeltaEncoding>, IEquatable<RiceDeltaEncoding>, IDeepCloneable<RiceDeltaEncoding>, IBufferMessage, IMessage
The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or
compressed removal indices.
The number of entries that are delta encoded in the encoded data. If only a
single integer was encoded, this will be zero and the single value will be
stored in first_value.
The offset of the first entry in the encoded data, or, if only a single
integer was encoded, that single integer's value. If the field is empty or
missing, assume zero.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["`RiceDeltaEncoding` is a class used for compressing data, specifically 4-byte hashes or removal indices, using the Rice-Golomb encoding method."],["This class has properties such as `EncodedData`, `EntryCount`, `FirstValue`, and `RiceParameter`, for accessing the encoded data, number of entries, first entry offset/value, and the encoding parameter respectively."],["`RiceDeltaEncoding` implements several interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, along with being inherited from the base `Object` class."],["The `RiceDeltaEncoding` class has two constructors: a default constructor and another that accepts a `RiceDeltaEncoding` object, allowing for creation of new objects or for creating copies of existing ones."],["There are multiple versions of the `RiceDeltaEncoding` class, including versions 3.0.0-beta05 (latest), 3.0.0-beta04 and 2.0.0-beta05, and they are found in the namespace `Google.Cloud.WebRisk.V1Beta1`."]]],[]]