BufferFieldOps

open class BufferFieldOps<T, A : Field<T>>(elementAlgebra: A, bufferFactory: BufferFactory<T>) : BufferRingOps<T, A> , BufferAlgebra<T, A> , FieldOps<Buffer<T>> , ScaleOperations<Buffer<T>>

Functions

add
Link copied to clipboard
common
open override fun add(left: Buffer<T>, right: Buffer<T>): Buffer<T>
Addition of two elements.
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Buffer<T>, right: Buffer<T>): Buffer<T>
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Buffer<T>, right: Buffer<T>) -> Buffer<T>
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): Buffer<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): Buffer<T>?
Wraps a raw string to T object.
buffer
Link copied to clipboard
common
open fun buffer(size: Int, vararg elements: T): Buffer<T>
div
Link copied to clipboard
common
open operator fun Buffer<T>.div(other: Buffer<T>): Buffer<T>
Division of two elements.
open operator fun Buffer<T>.div(k: Number): Buffer<T>
Division of this element by scalar.
divide
Link copied to clipboard
common
open override fun divide(left: Buffer<T>, right: Buffer<T>): Buffer<T>
Division of two elements.
map
Link copied to clipboard
common
open fun Buffer<T>.map(block: A.(T) -> T): Buffer<T>
mapIndexed
Link copied to clipboard
common
open fun Buffer<T>.mapIndexed(block: A.(index: Int, T) -> T): Buffer<T>
minus
Link copied to clipboard
common
open operator fun Buffer<T>.minus(other: Buffer<T>): Buffer<T>
Subtraction of two elements.
multiply
Link copied to clipboard
common
open override fun multiply(left: Buffer<T>, right: Buffer<T>): Buffer<T>
Multiplies two elements.
plus
Link copied to clipboard
common
open operator fun Buffer<T>.plus(other: Buffer<T>): Buffer<T>
Addition of two elements.
scale
Link copied to clipboard
common
open override fun scale(a: Buffer<T>, value: Double): Buffer<T>
Scaling an element by a scalar.
times
Link copied to clipboard
common
open operator fun Buffer<T>.times(other: Buffer<T>): Buffer<T>
Multiplies this element by scalar.
open operator fun Number.times(other: Buffer<T>): Buffer<T>
Multiplication of this number by element.
open operator fun Buffer<T>.times(k: Number): Buffer<T>
Multiplication of this element by a scalar.
unaryMinus
Link copied to clipboard
common
open operator override fun Buffer<T>.unaryMinus(): Buffer<T>
The negation of this element.
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Buffer<T>): Buffer<T>
Dynamically invokes a unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Buffer<T>) -> Buffer<T>
Dynamically dispatches a unary operation with the certain name.
unaryPlus
Link copied to clipboard
common
open operator fun Buffer<T>.unaryPlus(): Buffer<T>
Returns this value.
zip
Link copied to clipboard
common
open fun Buffer<T>.zip(other: Buffer<T>, block: A.(T, T) -> T): Buffer<T>

Properties

bufferFactory
Link copied to clipboard
common
open override val bufferFactory: BufferFactory<T>
elementAlgebra
Link copied to clipboard
common
open override val elementAlgebra: A

Inheritors

BufferField
Link copied to clipboard

Extensions

withSize
Link copied to clipboard
common
fun <T, A : Field<T>> BufferFieldOps<T, A>.withSize(size: Int): BufferField<T, A>
Generate full buffer field from given buffer operations

Sources

common source
Link copied to clipboard