BufferRingOps

open class BufferRingOps<T, A : Ring<T>>(elementAlgebra: A, bufferFactory: BufferFactory<T>) : BufferAlgebra<T, A> , RingOps<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>
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.
times
Link copied to clipboard
common
open operator fun Buffer<T>.times(other: Buffer<T>): Buffer<T>
Multiplies this element by 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

BufferFieldOps
Link copied to clipboard

Sources

common source
Link copied to clipboard