ByteRing

object ByteRing : Ring<Byte> , Norm<Byte, Byte> , NumericAlgebra<Byte>

A field for Byte without boxing. Does not produce appropriate ring element.

Functions

add
Link copied to clipboard
common
open inline override fun add(a: Byte, b: Byte): Byte
binaryOperation
Link copied to clipboard
common
open fun binaryOperation(operation: String, left: Byte, right: Byte): Byte
Dynamically invokes a binary operation with the certain name.
binaryOperationFunction
Link copied to clipboard
common
open override fun binaryOperationFunction(operation: String): (left: Byte, right: Byte) -> Byte
Dynamically dispatches a binary operation with the certain name.
bindSymbol
Link copied to clipboard
common
open fun bindSymbol(value: String): Byte
Wraps a raw string to T object.
div
Link copied to clipboard
common
open operator fun Byte.div(k: Number): Byte
Division of this element by scalar.
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
leftSideNumberOperation
Link copied to clipboard
common
open fun leftSideNumberOperation(operation: String, left: Number, right: Byte): Byte
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: Byte) -> Byte
Dynamically dispatches a binary operation with the certain name with numeric first argument.
minus
Link copied to clipboard
common
open inline operator override fun Byte.minus(b: Byte): Byte
multiply
Link copied to clipboard
common
open inline override fun multiply(a: Byte, b: Byte): Byte
Multiplies two elements.
open inline override fun multiply(a: Byte, k: Number): Byte
norm
Link copied to clipboard
common
open override fun norm(arg: Byte): Byte
Computes the norm of arg (i.e.
number
Link copied to clipboard
common
open override fun number(value: Number): Byte
Wraps a number to T object.
plus
Link copied to clipboard
common
open inline operator override fun Byte.plus(b: Byte): Byte
rightSideNumberOperation
Link copied to clipboard
common
open fun rightSideNumberOperation(operation: String, left: Byte, right: Number): Byte
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: Byte, right: Number) -> Byte
Dynamically dispatches a binary operation with the certain name with numeric first argument.
times
Link copied to clipboard
common
open inline operator override fun Byte.times(b: Byte): Byte
Multiplies this element by scalar.
open operator fun Byte.times(k: Number): Byte
Multiplication of this element by a scalar.
open operator fun Number.times(b: Byte): Byte
Multiplication of this number by element.
toString
Link copied to clipboard
common
open fun toString(): String
unaryMinus
Link copied to clipboard
common
open inline operator override fun Byte.unaryMinus(): Byte
unaryOperation
Link copied to clipboard
common
open fun unaryOperation(operation: String, arg: Byte): Byte
Dynamically invokes an unary operation with the certain name.
unaryOperationFunction
Link copied to clipboard
common
open override fun unaryOperationFunction(operation: String): (arg: Byte) -> Byte
Dynamically dispatches an unary operation with the certain name.
unaryPlus
Link copied to clipboard
common
open operator fun Byte.unaryPlus(): Byte
Returns this value.

Properties

one
Link copied to clipboard
common
open override val one: Byte
neutral operation for multiplication
zero
Link copied to clipboard
common
open override val zero: Byte
The neutral element of addition.