pub trait AltReal: AltVec {
const HAS_ELT: bool = false;
const HAS_GET_REGION: bool = false;
const HAS_IS_SORTED: bool = false;
const HAS_NO_NA: bool = false;
const HAS_SUM: bool = false;
const HAS_MIN: bool = false;
const HAS_MAX: bool = false;
// Provided methods
fn elt(_x: SEXP, _i: R_xlen_t) -> f64 { ... }
fn get_region(
_x: SEXP,
_i: R_xlen_t,
_n: R_xlen_t,
_buf: &mut [f64],
) -> R_xlen_t { ... }
fn is_sorted(_x: SEXP) -> i32 { ... }
fn no_na(_x: SEXP) -> i32 { ... }
fn sum(_x: SEXP, _narm: bool) -> SEXP { ... }
fn min(_x: SEXP, _narm: bool) -> SEXP { ... }
fn max(_x: SEXP, _narm: bool) -> SEXP { ... }
}Expand description
Real vector methods.
Provided Associated Constants§
Sourceconst HAS_GET_REGION: bool = false
const HAS_GET_REGION: bool = false
Set to true to register get_region.
Sourceconst HAS_IS_SORTED: bool = false
const HAS_IS_SORTED: bool = false
Set to true to register is_sorted.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.