DomainBin

data class DomainBin<in T : Comparable<T>, D : Domain<T>, out V>(val domain: D, val binValue: V) : Bin<T, V> , Domain<T> (source)

A simple histogram bin based on domain

Constructors

Link copied to clipboard
constructor(domain: D, binValue: V)

Functions

Link copied to clipboard
open operator override fun contains(point: Point<T>): Boolean

Properties

Link copied to clipboard
open override val binValue: V

The value of this bin.

Link copied to clipboard
open override val dimension: Int
Link copied to clipboard
val domain: D