2026-02-10 14:02:11 +00:00
|
|
|
package enc
|
|
|
|
|
|
|
|
|
|
const eps = 0.000001
|
2026-06-07 21:27:18 +03:00
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
flagLiteral = 128
|
|
|
|
|
|
2026-06-12 00:29:02 +03:00
|
|
|
//hSize = 1
|
2026-06-07 21:27:18 +03:00
|
|
|
|
|
|
|
|
// append scripts
|
2026-06-12 00:29:02 +03:00
|
|
|
// addBaseValue = 0 // cumulative and instant only
|
|
|
|
|
// addUnixtime = 0 // time only
|
|
|
|
|
// incrementRun = 1
|
|
|
|
|
// incrementLiteral = 2
|
|
|
|
|
// endSeries = 3
|
|
|
|
|
// startRun = 4
|
|
|
|
|
// add1stDelta = 5 // time only
|
2026-06-07 21:27:18 +03:00
|
|
|
)
|