Arithmetic

Base.absFunction
abs(x::Node)

Obtain a node with values constructed by applying abs to each input value.

source
Base.expFunction
exp(x::Node)

Obtain a node with values constructed by applying exp to each input value.

source
Base.logFunction
log(x::Node)

Obtain a node with values constructed by applying log to each input value.

source
Base.log10Function
log10(x::Node)

Obtain a node with values constructed by applying log10 to each input value.

source
Base.log2Function
log2(x::Node)

Obtain a node with values constructed by applying log2 to each input value.

source
Base.sqrtFunction
sqrt(x::Node)

Obtain a node with values constructed by applying sqrt to each input value.

source
Base.Math.cbrtFunction
cbrt(x::Node)

Obtain a node with values constructed by applying cbrt to each input value.

source
Base.signFunction
sign(x::Node)

Obtain a node with values constructed by applying sign to each input value.

source
Base.tanFunction
tan(x::Node)

Obtain a node with values constructed by applying tan to each input value.

source
Base.sinFunction
sin(x::Node)

Obtain a node with values constructed by applying sin to each input value.

source
Base.cosFunction
cos(x::Node)

Obtain a node with values constructed by applying cos to each input value.

source
Base.atanFunction
atan(x::Node)

Obtain a node with values constructed by applying atan to each input value.

source
Base.asinFunction
asin(x::Node)

Obtain a node with values constructed by applying asin to each input value.

source
Base.acosFunction
acos(x::Node)

Obtain a node with values constructed by applying acos to each input value.

source
Base.tanhFunction
tanh(x::Node)

Obtain a node with values constructed by applying tanh to each input value.

source
Base.sinhFunction
sinh(x::Node)

Obtain a node with values constructed by applying sinh to each input value.

source
Base.coshFunction
cosh(x::Node)

Obtain a node with values constructed by applying cosh to each input value.

source
Base.atanhFunction
atanh(x::Node)

Obtain a node with values constructed by applying atanh to each input value.

source
Base.asinhFunction
asinh(x::Node)

Obtain a node with values constructed by applying asinh to each input value.

source
Base.acoshFunction
acosh(x::Node)

Obtain a node with values constructed by applying acosh to each input value.

source
Base.invFunction
inv(x::Node)

Obtain a node with values constructed by applying inv to each input value.

source
Base.:+Function
+(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying + to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:-Function
-(x::Node)

Obtain a node with values constructed by applying - to each input value.

source
-(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying - to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:*Function
*(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying * to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:/Function
/(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying / to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:^Function
^(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying ^ to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.minFunction
min(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying min to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.maxFunction
max(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying max to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:!Function
!(x::Node)

Obtain a node with values constructed by applying ! to each input value.

source
Base.:>Function
>(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying > to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:<Function
<(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying < to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:>=Function
>=(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying >= to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source
Base.:<=Function
<=(x, y[, alignment=DEFAULT_ALIGNMENT; kwargs...])

Obtain a node with values constructed by applying <= to the input values.

An alignment can optionally be specified. x and y should be nodes, or constants that can be converted to nodes.

Other keyword arguments are passed to apply.

source