mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
- Introduce new 'rem' operator convention - Prefer 'rem()' to 'mod()' when both are available, even if mod() is a member, and rem() -- an extension - Place operator 'rem' under the language feature
14 lines
499 B
Plaintext
Vendored
14 lines
499 B
Plaintext
Vendored
public final class A {
|
|
private field x: int
|
|
public method <init>(): void
|
|
public final method getX(): int
|
|
public final method setX(p0: int): void
|
|
}
|
|
|
|
|
|
public final class RemAssignmentOperationKt {
|
|
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
|
public final static method modAssign(@org.jetbrains.annotations.NotNull p0: A, p1: int): void
|
|
public final static method remAssign(@org.jetbrains.annotations.NotNull p0: A, p1: int): void
|
|
}
|