Fix superinterface of RemainderDivisionOperations

This commit is contained in:
Iaroslav Postovalov 2020-07-20 11:08:39 +07:00
parent b90c9c597c
commit 4d18a5f582
No known key found for this signature in database
GPG Key ID: 70D5F4DCB0972F1B

View File

@ -83,7 +83,7 @@ interface Norm<in T : Any, out R> {
fun <T : MathElement<out Norm<T, R>>, R> norm(arg: T): R = arg.context.norm(arg) fun <T : MathElement<out Norm<T, R>>, R> norm(arg: T): R = arg.context.norm(arg)
interface RemainderDivisionOperations<T> : Ring<T> { interface RemainderDivisionOperations<T> : RingOperations<T> {
/** /**
* Calculates the remainder of dividing this value by [arg]. * Calculates the remainder of dividing this value by [arg].
*/ */