Sycnhronize docs of primitives in JS-IR, Wasm, Native sources
This commit is contained in:
committed by
Space Team
parent
34de2d9155
commit
607f15b55b
@@ -132,42 +132,42 @@ public class Byte private constructor() : Number(), Comparable<Byte> {
|
||||
public operator fun div(other: Double): Double
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Byte): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Short): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Int): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Long): Long
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Float): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -420,42 +420,42 @@ public class Short private constructor() : Number(), Comparable<Short> {
|
||||
public operator fun div(other: Double): Double
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Byte): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Short): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Int): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Long): Long
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Float): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -705,42 +705,42 @@ public class Int private constructor() : Number(), Comparable<Int> {
|
||||
public operator fun div(other: Double): Double
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Byte): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Short): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Int): Int
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Long): Long
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Float): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -1042,42 +1042,42 @@ public class Float private constructor() : Number(), Comparable<Float> {
|
||||
public operator fun div(other: Double): Double
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Byte): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Short): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Int): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Long): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Float): Float
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -1298,42 +1298,42 @@ public class Double private constructor() : Number(), Comparable<Double> {
|
||||
public operator fun div(other: Double): Double
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Byte): Double
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Short): Double
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Int): Double
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Long): Double
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@SinceKotlin("1.1")
|
||||
public operator fun rem(other: Float): Double
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
|
||||
@@ -154,7 +154,7 @@ public class Long internal constructor(
|
||||
public inline operator fun div(other: Double): Double = toDouble() / other
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -162,7 +162,7 @@ public class Long internal constructor(
|
||||
public inline operator fun rem(other: Byte): Long = rem(other.toLong())
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -170,7 +170,7 @@ public class Long internal constructor(
|
||||
public inline operator fun rem(other: Short): Long = rem(other.toLong())
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -178,7 +178,7 @@ public class Long internal constructor(
|
||||
public inline operator fun rem(other: Int): Long = rem(other.toLong())
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -186,7 +186,7 @@ public class Long internal constructor(
|
||||
public operator fun rem(other: Long): Long = modulo(other)
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
@@ -194,7 +194,7 @@ public class Long internal constructor(
|
||||
public inline operator fun rem(other: Float): Float = toFloat() % other
|
||||
|
||||
/**
|
||||
* Calculates the remainder of truncating division of this value by the other value.
|
||||
* Calculates the remainder of truncating division of this value (dividend) by the other value (divisor).
|
||||
*
|
||||
* The result is either zero or has the same sign as the _dividend_ and has the absolute value less than the absolute value of the divisor.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user