* @readonly * @type {bigint}
()
| 137 | * @type {bigint} |
| 138 | */ |
| 139 | get maxBigInt() { |
| 140 | if (!isHistogram(this)) |
| 141 | throw new ERR_INVALID_THIS('Histogram'); |
| 142 | return this[kHandle]?.maxBigInt(); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * @readonly |
nothing calls this directly
no test coverage detected