Bounded

data class Bounded(val from: Long, val to: Long) : ContentRange

Represents a Content-Range bounded from both sides

Constructors

Link copied to clipboard
constructor(from: Long, to: Long)

Properties

Link copied to clipboard
val from: Long

index from which the content should begin

Link copied to clipboard
val to: Long

the last index the content should end at (inclusive)

Functions

Link copied to clipboard
open override fun toString(): String