Int16Histogram.js 760 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /*
  4. * This is a TypeScript port of the original Java version, which was written by
  5. * Gil Tene as described in
  6. * https://github.com/HdrHistogram/HdrHistogram
  7. * and released to the public domain, as explained at
  8. * http://creativecommons.org/publicdomain/zero/1.0/
  9. */
  10. const TypedArrayHistogram_1 = require("./TypedArrayHistogram");
  11. class Int16Histogram extends TypedArrayHistogram_1.default {
  12. constructor(lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits) {
  13. super(Uint16Array, lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits);
  14. }
  15. }
  16. exports.default = Int16Histogram;
  17. //# sourceMappingURL=Int16Histogram.js.map