FrequencyEntry

data class FrequencyEntry<T>(val value: T, val count: Long)(source)

A data holder representing a single value and its observed frequency.

Type Parameters

T

the type of the observed value.

Constructors

Link copied to clipboard
constructor(value: T, count: Long)

Properties

Link copied to clipboard
val count: Long

the number of times value has been observed.

Link copied to clipboard
val value: T

the observed value.