Struct extendr_api::scalar::Rfloat

source ·
#[repr(C)]
pub struct Rfloat(pub f64);
Expand description

Rfloat is a wrapper for f64 in the context of an R’s integer vector.

Rfloat has a special NA value, obtained from R headers via R_NaReal.

Rfloat has the same footprint as an f64 value allowing us to use it in zero copy slices.

Tuple Fields§

§0: f64

Implementations§

source§

impl Rfloat

source

pub fn inner(&self) -> f64

Get underlying value.

source

pub fn is_nan(&self) -> bool

source

pub fn is_sign_positive(&self) -> bool

source

pub fn is_sign_negative(&self) -> bool

source

pub fn is_infinite(&self) -> bool

source

pub fn is_subnormal(&self) -> bool

source

pub fn abs(&self) -> Rfloat

source

pub fn sqrt(&self) -> Rfloat

Trait Implementations§

source§

impl Add<Rfloat> for &Rfloat

source§

fn add(self, rhs: Rfloat) -> Self::Output

Add two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the + operator.
source§

impl Add<Rfloat> for Rfloat

source§

fn add(self, rhs: Rfloat) -> Self::Output

Add two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the + operator.
source§

impl Add<Rfloat> for f64

source§

fn add(self, rhs: Rfloat) -> Self::Output

Add two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the + operator.
source§

impl Add<f64> for Rfloat

source§

fn add(self, rhs: f64) -> Self::Output

Add two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the + operator.
source§

impl AddAssign<Rfloat> for &mut Rfloat

source§

fn add_assign(&mut self, other: Rfloat)

Add two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl AddAssign<Rfloat> for Option<f64>

source§

fn add_assign(&mut self, other: Rfloat)

Add two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl AddAssign<Rfloat> for Rfloat

source§

fn add_assign(&mut self, other: Rfloat)

Add two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl AddAssign<f64> for &mut Rfloat

source§

fn add_assign(&mut self, other: f64)

Add two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl AddAssign<f64> for Rfloat

source§

fn add_assign(&mut self, other: f64)

Add two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl<'a> AsTypedSlice<'a, Rfloat> for Robjwhere Self: 'a,

source§

fn as_typed_slice(&self) -> Option<&'a [Rfloat]>

source§

fn as_typed_slice_mut(&mut self) -> Option<&'a mut [Rfloat]>

source§

impl CanBeNA for Rfloat

use extendr_api::prelude::*;
test! {
    assert!((<Rfloat>::na()).is_na());
}
source§

fn is_na(&self) -> bool

Return true is the is a NA value.

source§

fn na() -> Self

Construct a NA.

source§

impl Clone for Rfloat

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Rfloat

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Debug format.

source§

impl Default for Rfloat

use extendr_api::prelude::*;
test! {
    assert_eq!(<Rfloat>::default(), <f64>::default());
}
source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Div<Rfloat> for &Rfloat

source§

fn div(self, rhs: Rfloat) -> Self::Output

Divide two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the / operator.
source§

impl Div<Rfloat> for Rfloat

source§

fn div(self, rhs: Rfloat) -> Self::Output

Divide two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the / operator.
source§

impl Div<Rfloat> for f64

source§

fn div(self, rhs: Rfloat) -> Self::Output

Divide two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the / operator.
source§

impl Div<f64> for Rfloat

source§

fn div(self, rhs: f64) -> Self::Output

Divide two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the / operator.
source§

impl DivAssign<Rfloat> for &mut Rfloat

source§

fn div_assign(&mut self, other: Rfloat)

Divide two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl DivAssign<Rfloat> for Option<f64>

source§

fn div_assign(&mut self, other: Rfloat)

Divide two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl DivAssign<Rfloat> for Rfloat

source§

fn div_assign(&mut self, other: Rfloat)

Divide two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl DivAssign<f64> for &mut Rfloat

source§

fn div_assign(&mut self, other: f64)

Divide two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl DivAssign<f64> for Rfloat

source§

fn div_assign(&mut self, other: f64)

Divide two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl From<&f64> for Rfloat

source§

fn from(v: &f64) -> Self

Converts to this type from the input type.
source§

impl From<Option<&f64>> for Rfloat

source§

fn from(v: Option<&f64>) -> Self

Converts to this type from the input type.
source§

impl From<Option<f64>> for Rfloat

source§

fn from(v: Option<f64>) -> Self

Converts to this type from the input type.
source§

impl From<Rfloat> for Option<f64>

source§

fn from(v: Rfloat) -> Self

Converts to this type from the input type.
source§

impl From<Rfloat> for Rcplx

source§

fn from(val: Rfloat) -> Self

Converts to this type from the input type.
source§

impl From<Rfloat> for Robj

source§

fn from(value: Rfloat) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Rfloat

source§

fn from(v: f64) -> Self

Converts to this type from the input type.
source§

impl FromIterator<Rfloat> for Doubles

source§

fn from_iter<T: IntoIterator<Item = Rfloat>>(iter: T) -> Self

A more generalised iterator collector for small vectors. Generates a non-ALTREP vector.

source§

impl Mul<Rfloat> for &Rfloat

source§

fn mul(self, rhs: Rfloat) -> Self::Output

Multiply two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the * operator.
source§

impl Mul<Rfloat> for Rfloat

source§

fn mul(self, rhs: Rfloat) -> Self::Output

Multiply two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the * operator.
source§

impl Mul<Rfloat> for f64

source§

fn mul(self, rhs: Rfloat) -> Self::Output

Multiply two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the * operator.
source§

impl Mul<f64> for Rfloat

source§

fn mul(self, rhs: f64) -> Self::Output

Multiply two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the * operator.
source§

impl MulAssign<Rfloat> for &mut Rfloat

source§

fn mul_assign(&mut self, other: Rfloat)

Multiply two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl MulAssign<Rfloat> for Option<f64>

source§

fn mul_assign(&mut self, other: Rfloat)

Multiply two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl MulAssign<Rfloat> for Rfloat

source§

fn mul_assign(&mut self, other: Rfloat)

Multiply two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl MulAssign<f64> for &mut Rfloat

source§

fn mul_assign(&mut self, other: f64)

Multiply two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl MulAssign<f64> for Rfloat

source§

fn mul_assign(&mut self, other: f64)

Multiply two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl Neg for &Rfloat

source§

fn neg(self) -> Self::Output

Negate a Rfloat value.

§

type Output = Rfloat

The resulting type after applying the - operator.
source§

impl Neg for Rfloat

source§

fn neg(self) -> Self::Output

Negate a Rfloat value.

§

type Output = Rfloat

The resulting type after applying the - operator.
source§

impl PartialEq<Rfloat> for Rfloat

use extendr_api::prelude::*;
test! {
    assert!(<Rfloat>::default().eq(&<Rfloat>::default()));
    assert!(!<Rfloat>::na().eq(&<Rfloat>::na()));
}
source§

fn eq(&self, other: &Rfloat) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for &Rfloat

use extendr_api::prelude::*;
test! {
    assert!(<Rfloat>::default().eq(&<f64>::default()));
}
source§

fn eq(&self, other: &f64) -> bool

NA always fails.

1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<f64> for Rfloat

use extendr_api::prelude::*;
test! {
    assert!(<Rfloat>::default().eq(&<f64>::default()));
}
source§

fn eq(&self, other: &f64) -> bool

NA always fails.

1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sub<Rfloat> for &Rfloat

source§

fn sub(self, rhs: Rfloat) -> Self::Output

Subtract two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the - operator.
source§

impl Sub<Rfloat> for Rfloat

source§

fn sub(self, rhs: Rfloat) -> Self::Output

Subtract two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the - operator.
source§

impl Sub<Rfloat> for f64

source§

fn sub(self, rhs: Rfloat) -> Self::Output

Subtract two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the - operator.
source§

impl Sub<f64> for Rfloat

source§

fn sub(self, rhs: f64) -> Self::Output

Subtract two Rfloat values or an option of f64.

§

type Output = Rfloat

The resulting type after applying the - operator.
source§

impl SubAssign<Rfloat> for &mut Rfloat

source§

fn sub_assign(&mut self, other: Rfloat)

Subtract two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl SubAssign<Rfloat> for Option<f64>

source§

fn sub_assign(&mut self, other: Rfloat)

Subtract two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl SubAssign<Rfloat> for Rfloat

source§

fn sub_assign(&mut self, other: Rfloat)

Subtract two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl SubAssign<f64> for &mut Rfloat

source§

fn sub_assign(&mut self, other: f64)

Subtract two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl SubAssign<f64> for Rfloat

source§

fn sub_assign(&mut self, other: f64)

Subtract two Rfloat values or an option of f64, modifying the left-hand side in place. Overflows to NA.

source§

impl<'a> Sum<&'a Rfloat> for Rfloat

source§

fn sum<I: Iterator<Item = &'a Rfloat>>(iter: I) -> Rfloat

Yields NA on overflow if NAs present.

use extendr_api::prelude::*;
use std::iter::Sum;
test! {
    let z =Rfloat::default();
    let x = (0..100).map(|_| &z);
    assert_eq!(<Rfloat as Sum<& Rfloat>>::sum(x), <Rfloat>::default());
}
source§

impl Sum<Rfloat> for Rfloat

source§

fn sum<I: Iterator<Item = Rfloat>>(iter: I) -> Rfloat

Yields NA on overflow if NAs present.

use extendr_api::prelude::*;
use std::iter::Sum;
test! {
    let x = (0..100).map(|x| Rfloat::default());
    assert_eq!(<Rfloat as Sum>::sum(x), <Rfloat>::default());
}
source§

impl TryFrom<&Robj> for Rfloat

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(robj: &Robj) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<Robj> for Rfloat

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(robj: Robj) -> Result<Self>

Performs the conversion.
source§

impl Copy for Rfloat

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.