Bounded

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

Represents a Content-Range bounded from both sides

Constructors

Link copied to clipboard
fun Bounded(from: Long, to: Long)

Functions

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

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)