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

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
Wraps a raw string to T object.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
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.
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
ln
Link copied to clipboard
common
abstract fun ln(arg: T): T
Computes the natural logarithm (base e) of the value arg.
toString
Link copied to clipboard
common
open fun toString(): String
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: T): T
Dynamically invokes an unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open fun unaryOperationFunction(operation: String): (T) -> T
Dynamically dispatches an unary operation with the certain name.

Inheritors

ExtendedFieldOperations
Link copied to clipboard