All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kyo.stats.internal.UnsafeHistogram.scala Maven / Gradle / Ivy

There is a newer version: 0.12.1
Show newest version
package kyo.stats.internal

class UnsafeHistogram(numberOfSignificantValueDigits: Int, highestToLowestValueRatio: Long) {

    val _ = (numberOfSignificantValueDigits, highestToLowestValueRatio)

    def observe(v: Long): Unit = {}

    def observe(v: Double): Unit = {}

    def count(): Long = 0

    def valueAtPercentile(v: Double): Double = 0

    def maxValue(): Double = 0

    def minValue(): Double = 0

    def meanValue(): Double = 0

    def summary(): Summary =
        Summary(0, 0, 0, 0, 0, 0, 0, 0, 0)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy