Logo

Programming-Idioms

  • Fortran
  • Go
  • Perl
  • Erlang

Idiom #89 Handle invalid argument

You've detected that the integer value of argument x passed to the current function is invalid. Write the idiomatic way to abort the function execution and signal the problem.

error(badarg).
  if (x > largest_value) error stop "Illegal value in function."

This will also stop all other images.
return nil, fmt.Errorf("invalid value for x: %v", x)

The last return parameter of the current function has type error.
It is the caller's responsibility to check if the error is nil, before using the function's other result values.
die "Invalid argument $x";
enum {
    E_OK,
    E_OUT_OF_RANGE
};

int square(int x, int *result) {
    if (x > 1073741823) {
        return E_OUT_OF_RANGE;
    }
    *result = x*x;
    return E_OK;
}

New implementation...
< >
programming-idioms.org