pub enum SesExpr {
Show 14 variants
Num(f64),
Var(String),
Add(Box<SesExpr>, Box<SesExpr>),
Sub(Box<SesExpr>, Box<SesExpr>),
Mul(Box<SesExpr>, Box<SesExpr>),
Div(Box<SesExpr>, Box<SesExpr>),
Pow(Box<SesExpr>, Box<SesExpr>),
Neg(Box<SesExpr>),
Abs(Box<SesExpr>),
Sqrt(Box<SesExpr>),
Sin(Box<SesExpr>),
Cos(Box<SesExpr>),
Exp(Box<SesExpr>),
Ln(Box<SesExpr>),
}Expand description
A symbolic mathematical expression.
Variants§
Num(f64)
A numeric literal.
Var(String)
A named variable.
Add(Box<SesExpr>, Box<SesExpr>)
Addition: left + right.
Sub(Box<SesExpr>, Box<SesExpr>)
Subtraction: left - right.
Mul(Box<SesExpr>, Box<SesExpr>)
Multiplication: left * right.
Div(Box<SesExpr>, Box<SesExpr>)
Division: left / right.
Pow(Box<SesExpr>, Box<SesExpr>)
Exponentiation: base ^ exponent.
Neg(Box<SesExpr>)
Negation: -expr.
Abs(Box<SesExpr>)
Absolute value: |expr|.
Sqrt(Box<SesExpr>)
Square root: √expr.
Sin(Box<SesExpr>)
Sine: sin(expr).
Cos(Box<SesExpr>)
Cosine: cos(expr).
Exp(Box<SesExpr>)
Natural exponential: e^expr.
Ln(Box<SesExpr>)
Natural logarithm: ln(expr).
Implementations§
Trait Implementations§
impl StructuralPartialEq for SesExpr
Auto Trait Implementations§
impl Freeze for SesExpr
impl RefUnwindSafe for SesExpr
impl Send for SesExpr
impl Sync for SesExpr
impl Unpin for SesExpr
impl UnsafeUnpin for SesExpr
impl UnwindSafe for SesExpr
Blanket Implementations§
impl<T> Allocation for T
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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