pub struct MathML(/* private fields */);Implementations§
Source§impl MathML
impl MathML
pub fn addition(args: &[LispExpr]) -> Self
pub fn subtraction(args: &[LispExpr]) -> Self
pub fn multiplication(args: &[LispExpr]) -> Self
pub fn division(args: &[LispExpr]) -> Self
pub fn matrix(args: &[LispExpr]) -> Self
pub fn fraction(_args: &[LispExpr]) -> Self
pub fn subscript(_args: &[LispExpr]) -> Self
pub fn superscript(_args: &[LispExpr]) -> Self
pub fn vector(_args: &[LispExpr]) -> Self
pub fn derivative(_args: &[LispExpr]) -> Self
pub fn integral(_args: &[LispExpr]) -> Self
pub fn limit(_args: &[LispExpr]) -> Self
pub fn sum(_args: &[LispExpr]) -> Self
pub fn abs(_args: &[LispExpr]) -> Self
pub fn sqrt(_args: &[LispExpr]) -> Self
pub fn nth_root(_args: &[LispExpr]) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MathML
impl RefUnwindSafe for MathML
impl Send for MathML
impl Sync for MathML
impl Unpin for MathML
impl UnsafeUnpin for MathML
impl UnwindSafe for MathML
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
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