Checks a set of variables can be coerced to numeric and coerces them
Source:R/params_check_types.R
      check_numeric.RdN.B. This only works for the specific environment (to prevent weird side effects)
Usage
check_numeric(
  ...,
  .message = "`{param}` is non-numeric ({err}).",
  .env = rlang::caller_env()
)Examples
a = c(1:4L)
b = c("1",NA,"3.3")
f = NULL
g = NA
check_numeric(a,b,f,g)
c = c("dfsfs")
try(check_numeric(c,d, mean))
#> Warning: 1) 'd' is not defined in this context
#> 2) 'mean' is not defined in this context
#> Error in .check_framework(..., predicate = predicate, convert = convert,  : 
#>   1) `c` is non-numeric (non numeric format).