param_descrs_size method

int param_descrs_size(
  1. Z3_context c,
  2. Z3_param_descrs p
)

\brief Return the number of parameters in the given parameter description set.

def_API('Z3_param_descrs_size', UINT, (_in(CONTEXT), _in(PARAM_DESCRS)))

Implementation

int param_descrs_size(
  Z3_context c,
  Z3_param_descrs p,
) {
  return _param_descrs_size(
    c,
    p,
  );
}