pub fn function_arity_error(
name: &str,
min: usize,
max: Option<usize>,
got: usize,
) -> DogeErrorExpand description
The error an indirect call raises when the argument count is wrong, worded
like the compiler’s user-function arity message. max is None when the
function is variadic.