You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
767 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/*
* This is a TypeScript port of the original Java version, which was written by
* Gil Tene as described in
* https://github.com/HdrHistogram/HdrHistogram
* and released to the public domain, as explained at
* http://creativecommons.org/publicdomain/zero/1.0/
*/
const TypedArrayHistogram_1 = require("./TypedArrayHistogram");
class Float64Histogram extends TypedArrayHistogram_1.default {
constructor(lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits) {
super(Float64Array, lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits);
}
}
exports.default = Float64Histogram;
//# sourceMappingURL=Float64Histogram.js.map