ZSTD_dParam_getBounds method

ZSTD_bounds ZSTD_dParam_getBounds(
  1. int dParam
)

! ZSTD_dParam_getBounds() : All parameters must belong to an interval with lower and upper bounds, otherwise they will either trigger an error or be automatically clamped. @return : a structure, ZSTD_bounds, which contains

  • an error status field, which must be tested using ZSTD_isError()
  • both lower and upper bounds, inclusive

Implementation

ZSTD_bounds ZSTD_dParam_getBounds(
  int dParam,
) {
  return _ZSTD_dParam_getBounds(
    dParam,
  );
}