| 1234567891011121314151617 |
- "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 Int8Histogram extends TypedArrayHistogram_1.default {
- constructor(lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits) {
- super(Uint8Array, lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits);
- }
- }
- exports.default = Int8Histogram;
- //# sourceMappingURL=Int8Histogram.js.map
|