UNPKG
sketches-js-hassy
Version:
latest (1.0.4-hassy)
1.0.4-hassy
1.0.2-hassy
TypeScript implementation of DDSketch, a distributed quantile sketch algorithm
DataDog/sketches-js
sketches-js-hassy
/
dist
/
ddsketch
/
store
/
util.d.ts
5 lines
(4 loc)
•
169 B
TypeScript
View Raw
1
2
3
4
5
/** * Return the sum of the values from range `start` to `end` in `array` */
export
declare
const
sumOfRange
:
(
array
:
number
[],
start
:
number
,
end
:
number
) =>
number
;