Return the (lower, upper) int bounds of a compression parameter. Both the lower and upper bounds are inclusive.
(self)
| 199 | overlap_log = _zstd.ZSTD_c_overlapLog |
| 200 | |
| 201 | def bounds(self): |
| 202 | """Return the (lower, upper) int bounds of a compression parameter. |
| 203 | |
| 204 | Both the lower and upper bounds are inclusive. |
| 205 | """ |
| 206 | return _zstd.get_param_bounds(self.value, is_compress=True) |
| 207 | |
| 208 | |
| 209 | class DecompressionParameter(enum.IntEnum): |
no outgoing calls