pub enum BuiltinOp {
Sin,
Cos,
Tan,
Sec,
Csc,
Cot,
Exp,
Log,
Sqrt,
Abs,
}Expand description
Pre-resolved builtin function operation.
Used by the SIMD evaluator to avoid string matching on the hot path.
The compiler converts Symbol names to BuiltinOp variants once at
compile time.
Variants§
Sin
$\sin(x)$
Cos
$\cos(x)$
Tan
$\tan(x)$
Sec
$\sec(x) = 1/\cos(x)$
Csc
$\csc(x) = 1/\sin(x)$
Cot
$\cot(x) = 1/\tan(x)$
Exp
$e^x$
Log
$\ln(x)$
Sqrt
$\sqrt{x}$
Abs
$|x|$
Implementations§
Trait Implementations§
impl Copy for BuiltinOp
impl Eq for BuiltinOp
impl StructuralPartialEq for BuiltinOp
Auto Trait Implementations§
impl Freeze for BuiltinOp
impl RefUnwindSafe for BuiltinOp
impl Send for BuiltinOp
impl Sync for BuiltinOp
impl Unpin for BuiltinOp
impl UnsafeUnpin for BuiltinOp
impl UnwindSafe for BuiltinOp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more