RingOpsND
interface RingOpsND<T, out A : RingOps<T>> : RingOps<StructureND<T>> , GroupOpsND<T, A>
Content copied to clipboard
Ring of StructureND.
Parameters
T
the type of the element contained in ND structure.
A
the type of ring over structure elements.
Types
Functions
add
Link copied to clipboard
abstract fun add(left: StructureND<T>, right: StructureND<T>): StructureND<T>
Content copied to clipboard
binaryOperation
Link copied to clipboard
open fun binaryOperation(operation: String, left: StructureND<T>, right: StructureND<T>): StructureND<T>
Content copied to clipboard
binaryOperationFunction
Link copied to clipboard
open override fun binaryOperationFunction(operation: String): (left: StructureND<T>, right: StructureND<T>) -> StructureND<T>
Content copied to clipboard
bindSymbol
Link copied to clipboard
bindSymbolOrNull
Link copied to clipboard
getFeature
Link copied to clipboard
open fun <F : StructureFeature> getFeature(structure: StructureND<T>, type: KClass<out F>): F?
Content copied to clipboard
invoke
Link copied to clipboard
open operator fun (T) -> T.invoke(structure: StructureND<T>): StructureND<T>
Content copied to clipboard
mapIndexed
Link copied to clipboard
abstract fun StructureND<T>.mapIndexed(transform: A.(index: IntArray, T) -> T): StructureND<T>
Content copied to clipboard
Maps elements from one structure to another one by applying transform to them alongside with their indices.
minus
Link copied to clipboard
open operator fun StructureND<T>.minus(other: StructureND<T>): StructureND<T>
Content copied to clipboard
multiply
Link copied to clipboard
open override fun multiply(left: StructureND<T>, right: StructureND<T>): StructureND<T>
Content copied to clipboard
plus
Link copied to clipboard
open operator fun StructureND<T>.plus(other: StructureND<T>): StructureND<T>
Content copied to clipboard
structureND
Link copied to clipboard
abstract fun structureND(shape: Shape, initializer: A.(IntArray) -> T): StructureND<T>
Content copied to clipboard
Produces a new StructureND using given initializer function.
times
Link copied to clipboard
open operator fun StructureND<T>.times(other: StructureND<T>): StructureND<T>
Content copied to clipboard
unaryMinus
Link copied to clipboard
unaryOperation
Link copied to clipboard
open fun unaryOperation(operation: String, arg: StructureND<T>): StructureND<T>
Content copied to clipboard
unaryOperationFunction
Link copied to clipboard
open override fun unaryOperationFunction(operation: String): (arg: StructureND<T>) -> StructureND<T>
Content copied to clipboard
unaryPlus
Link copied to clipboard
zip
Link copied to clipboard
abstract fun zip(left: StructureND<T>, right: StructureND<T>, transform: A.(T, T) -> T): StructureND<T>
Content copied to clipboard
Properties
elementAlgebra
Link copied to clipboard
Inheritors
RingND
Link copied to clipboard
FieldOpsND
Link copied to clipboard
BufferedRingOpsND
Link copied to clipboard
Sources
common source
Link copied to clipboard