ExponentialOperations

interface ExponentialOperations<T> : Algebra<T>

A container for operations related to exp and ln functions.

Parameters

T

the type of element of this structure.

Types

Companion
Link copied to clipboard
common
object Companion

Functions

acosh
Link copied to clipboard
common
abstract fun acosh(arg: T): T
Computes the inverse hyperbolic cosine of arg.
asinh
Link copied to clipboard
common
abstract fun asinh(arg: T): T
Computes the inverse hyperbolic sine of arg.
atanh
Link copied to clipboard
common
abstract fun atanh(arg: T): T
Computes the inverse hyperbolic tangent of arg.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: T, right: T): T
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open fun binaryOperationFunction(operation: String): (T, T) -> T
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): T
The same as bindSymbolOrNull but throws an error if symbol could not be bound
bindSymbolOrNull
Link copied to clipboard
common
open fun bindSymbolOrNull(value: String): T?
Wraps a raw string to T object.
cosh
Link copied to clipboard
common
abstract fun cosh(arg: T): T
Computes the hyperbolic cosine of arg.
exp
Link copied to clipboard
common
abstract fun exp(arg: T): T
Computes Euler's number e raised to the power of the value arg.
ln
Link copied to clipboard
common
abstract fun ln(arg: T): T
Computes the natural logarithm (base e) of the value arg.
sinh
Link copied to clipboard
common
abstract fun sinh(arg: T): T
Computes the hyperbolic sine of arg.
tanh
Link copied to clipboard
common
abstract fun tanh(arg: T): T
Computes the hyperbolic tangent of arg.
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: T): T
Dynamically invokes a unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open fun unaryOperationFunction(operation: String): (T) -> T
Dynamically dispatches a unary operation with the certain name.

Inheritors

ExtendedFieldOps
Link copied to clipboard

Sources

common source
Link copied to clipboard