Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
756 bytes
|
Line | |
---|
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 Int8Histogram extends TypedArrayHistogram_1.default {
|
---|
12 | constructor(lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits) {
|
---|
13 | super(Uint8Array, lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits);
|
---|
14 | }
|
---|
15 | }
|
---|
16 | exports.default = Int8Histogram;
|
---|
17 | //# sourceMappingURL=Int8Histogram.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.