Init()
Initializes the `OffsetRange`.
InitFromRange()
Initializes the `OffsetRange` from given start and end offsets. The range is inclusive of the start offset (@p aStartOffset) but exclusive of the end offset (@p aEndOffset).
InitFromMessageOffsetToEnd()
Initializes the `OffsetRange` from a given `Message` from its offset to the message end. The start offset of the range is set to `aMessage.GetOffset()`, and the end offset is set to include all bytes in the message up to its current length `aMessage.GetLength()`.
InitFromMessageFullLength()
Initializes the `OffsetRange` from a given `Message` from zero offset up to to its full length. The start offset of the range is set to zero, and the end offset is set to include full length of @p aMessage.
GetOffset() const
Gets the start offset of the `OffsetRange`.
GetEndOffset() const
Gets the end offset of the `OffsetRange`. This offset is exclusive, meaning it marks the position immediately after the last byte within the range.
GetLength() const
Gets the `OffsetRange` length.
IsEmpty() const
Indicates whether or not the `OffsetRange` is empty.
Contains() const
Indicates whether or not the `OffsetRange` contains a given number of bytes.
AdvanceOffset()
Advances the start offset forward by the given number of bytes. This method ensures the start offset does not go beyond the end offset of the `OffsetRange`. If @p aLength is greater than the available bytes in the `OffsetRange`, the start offset is adjusted to the end offset, effectively shrinking the range to zero length.
ShrinkLength()
Shrinks the `OffsetRange` length to a given length. If the current length of the `OffsetRange` is longer than @p aLength, the offset range is shortened to @p aLength. If the range is already shorter or the same, it remains unchanged.