Create a usable list of default arguments to a function
Source:R/matsindf_apply.R
get_useable_default_args.Rdformals(FUN) does not handle arguments without a default well,
returning a name vector of length 1,
which when converted to character is "".
This function detects that condition and replaces the no-default argument with
the value of .no_default, by default NULL.
Usage
get_useable_default_args(FUN, which = c("values", "names"), no_default = NULL)