forked from kscience/kmath
Update documentation of NumberAlgebra
This commit is contained in:
parent
7d32fe0af8
commit
4c39b98017
@ -4,7 +4,7 @@ import kotlin.math.abs
|
||||
import kotlin.math.pow as kpow
|
||||
|
||||
/**
|
||||
* Advanced Number-like field that implements basic operations
|
||||
* Advanced Number-like semifield that implements basic operations.
|
||||
*/
|
||||
interface ExtendedFieldOperations<T> :
|
||||
InverseTrigonometricOperations<T>,
|
||||
@ -27,6 +27,10 @@ interface ExtendedFieldOperations<T> :
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Advanced Number-like field that implements basic operations.
|
||||
*/
|
||||
interface ExtendedField<T> : ExtendedFieldOperations<T>, Field<T> {
|
||||
override fun rightSideNumberOperation(operation: String, left: T, right: Number): T = when (operation) {
|
||||
PowerOperations.POW_OPERATION -> power(left, right)
|
||||
|
Loading…
Reference in New Issue
Block a user