BufferField

class BufferField<T, A : Field<T>>(elementAlgebra: A, bufferFactory: BufferFactory<T>, size: Int) : BufferFieldOps<T, A> , Field<Buffer<T>> , WithSize

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.
leftSideNumberOperation
Link copied to clipboard
common
open fun leftSideNumberOperation(operation: String, left: Number, right: Buffer<T>): Buffer<T>
Dynamically invokes a binary operation with the certain name with numeric first argument.
leftSideNumberOperationFunction
Link copied to clipboard
common
open fun leftSideNumberOperationFunction(operation: String): (left: Number, right: Buffer<T>) -> Buffer<T>
Dynamically dispatches a binary operation with the certain name with numeric first argument.
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.
number
Link copied to clipboard
common
open override fun number(value: Number): Buffer<T>
Wraps a number to T object.
plus
Link copied to clipboard
common
open operator fun Buffer<T>.plus(other: Buffer<T>): Buffer<T>
Addition of two elements.
rightSideNumberOperation
Link copied to clipboard
common
open fun rightSideNumberOperation(operation: String, left: Buffer<T>, right: Number): Buffer<T>
Dynamically invokes a binary operation with the certain name with numeric second argument.
rightSideNumberOperationFunction
Link copied to clipboard
common
open fun rightSideNumberOperationFunction(operation: String): (left: Buffer<T>, right: Number) -> Buffer<T>
Dynamically dispatches a binary operation with the certain name with numeric first argument.
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
one
Link copied to clipboard
common
open override val one: Buffer<T>
The neutral element of multiplication
size
Link copied to clipboard
common
open override val size: Int
zero
Link copied to clipboard
common
open override val zero: Buffer<T>
The neutral element of addition.

Extensions

buffer
Link copied to clipboard
common
fun BufferField<Double, *>.buffer(vararg elements: Number): Buffer<Double>

Sources

common source
Link copied to clipboard