[][src]Enum mathml::BuiltinOp

pub enum BuiltinOp {
    factorial,
    minus,
    abs,
    conjugate,
    arg,
    real,
    imaginary,
    floor,
    ceiling,
    not,
    inverse,
    ident,
    domain,
    codomain,
    image,
    sin,
    cos,
    tan,
    sec,
    csc,
    cot,
    sinh,
    cosh,
    tanh,
    sech,
    csch,
    coth,
    arcsin,
    arccos,
    arctan,
    arccosh,
    arccot,
    arccoth,
    arccsc,
    arccsch,
    arcsec,
    arcsech,
    arcsinh,
    arctanh,
    exp,
    ln,
    log,
    determinant,
    transpose,
    divergence,
    grad,
    curl,
    laplacian,
    card,
    quotient,
    divide,
    power,
    rem,
    implies,
    equivalent,
    approx,
    setdiff,
    vectorproduct,
    scalarproduct,
    outerproduct,
    plus,
    times,
    max,
    min,
    gcd,
    lcm,
    mean,
    sdev,
    variance,
    median,
    mode,
    and,
    or,
    xor,
    selector,
    union,
    intersect,
    cartesianproduct,
    compose,
    fn,
    int,
    sum,
    product,
    diff,
    partialdiff,
    forall,
    exists,
    eq,
    neq,
    gt,
    lt,
    geq,
    leq,
    root,
}

Variants

factorial
minus
abs
conjugate
arg
real
imaginary
floor
ceiling
not
inverse
ident
domain
codomain
image
sin
cos
tan
sec
csc
cot
sinh
cosh
tanh
sech
csch
coth
arcsin
arccos
arctan
arccosh
arccot
arccoth
arccsc
arccsch
arcsec
arcsech
arcsinh
arctanh
exp
ln
log
determinant
transpose
divergence
grad
curl
laplacian
card
quotient
divide
power
rem
implies
equivalent
approx
setdiff
vectorproduct
scalarproduct
outerproduct
plus
times
max
min
gcd
lcm
mean
sdev
variance
median
mode
and
or
xor
selector
union
intersect
cartesianproduct
compose
fn
int
sum
product
diff
partialdiff
forall
exists
eq
neq
gt
lt
geq
leq
root

Trait Implementations

impl Debug for BuiltinOp[src]

impl<'de> Deserialize<'de> for BuiltinOp[src]

impl Eq for BuiltinOp[src]

impl PartialEq<BuiltinOp> for BuiltinOp[src]

impl Serialize for BuiltinOp[src]

impl StructuralEq for BuiltinOp[src]

impl StructuralPartialEq for BuiltinOp[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.