Bucket

@Serializable
data class Bucket(val low: Int, val high: Int, val count: Int)

Chrome histogram bucket.

Constructors

Link copied to clipboard
constructor(low: Int, high: Int, count: Int)

Properties

Link copied to clipboard
val count: Int

Number of samples.

Link copied to clipboard
val high: Int

Maximum value (exclusive).

Link copied to clipboard
val low: Int

Minimum value (inclusive).