* @readonly * @type {bigint}
()
| 97 | * @type {bigint} |
| 98 | */ |
| 99 | get countBigInt() { |
| 100 | if (!isHistogram(this)) |
| 101 | throw new ERR_INVALID_THIS('Histogram'); |
| 102 | return this[kHandle]?.countBigInt(); |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * @readonly |
nothing calls this directly
no test coverage detected