fn try_from_sexp_numeric_vec<T>(sexp: SEXP) -> Result<Vec<T>, SexpError>Expand description
Convert numeric/logical/raw vectors to Vec<T> with element-wise coercion.
NA-unaware: an R NA round-trips as the coerced sentinel rather than being
rejected. Bind Vec<Option<T>> (see na_vectors) when the caller can pass NA.