Package kotlin
Core functions and types, available on all supported platforms.
Core functions and types, available on all supported platforms.
Core functions and types, available on all supported platforms.
Core functions and types, available on all supported platforms.
Core functions and types, available on all supported platforms.
Types
Base interface implicitly implemented by all annotation interfaces. See Kotlin language documentation for more information on annotations.
Base interface implicitly implemented by all annotation interfaces. See Kotlin language documentation for more information on annotations.
Base interface implicitly implemented by all annotation interfaces. See Kotlin language documentation for more information on annotations.
Base interface implicitly implemented by all annotation interfaces. See Kotlin language documentation for more information on annotations.
Represents an array (specifically, a Java array when targeting the JVM platform). Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions. See Kotlin language documentation for more information on arrays.
Represents an array (specifically, a Java array when targeting the JVM platform). Array instances can be created using the arrayOf, arrayOfNulls and emptyArray standard library functions. See Kotlin language documentation for more information on arrays.
Represents an array. Array instances can be created using the constructor, arrayOf, arrayOfNulls and emptyArray standard library functions. See Kotlin language documentation for more information on arrays.
Represents a value which is either true
or false
. On the JVM, non-nullable values of this type are represented as values of the primitive type boolean
.
Represents a value which is either true
or false
. On the JVM, non-nullable values of this type are represented as values of the primitive type boolean
.
Represents a value which is either true
or false
. On the JVM, non-nullable values of this type are represented as values of the primitive type boolean
.
An array of booleans. When targeting the JVM, instances of this class are represented as boolean[]
.
An array of booleans. When targeting the JVM, instances of this class are represented as boolean[]
.
Allows to infer generic type arguments of a function from the calls in the annotated function parameter of that function.
Since Kotlin
Represents a 8-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type byte
.
Represents a 8-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type byte
.
Represents a 8-bit signed integer.
An array of bytes. When targeting the JVM, instances of this class are represented as byte[]
.
An array of bytes. When targeting the JVM, instances of this class are represented as byte[]
.
An array of bytes.
Represents a 16-bit Unicode character.
Represents a 16-bit Unicode character.
Represents a 16-bit Unicode character.
An array of chars. When targeting the JVM, instances of this class are represented as char[]
.
An array of chars. When targeting the JVM, instances of this class are represented as char[]
.
An array of chars.
Classes which inherit from this interface have a defined total ordering between their instances.
Classes which inherit from this interface have a defined total ordering between their instances.
Classes which inherit from this interface have a defined total ordering between their instances.
Classes which inherit from this interface have a defined total ordering between their instances.
Defines deep recursive function that keeps its stack on the heap, which allows very deep recursive computations that do not use the actual call stack. To initiate a call to this deep recursive function use its invoke function. As a rule of thumb, it should be used if recursion goes deeper than a thousand calls.
Since Kotlin
A scope class for DeepRecursiveFunction function declaration that defines callRecursive methods to recursively call this function or another DeepRecursiveFunction putting the call activation frame on the heap.
Since Kotlin
Marks the annotated declaration as deprecated.
Marks the annotated declaration as deprecated.
Marks the annotated declaration as deprecated.
Marks the annotated declaration as deprecated. In contrast to Deprecated, severity of the reported diagnostic is not a constant value, but differs depending on the API version of the usage (the value of the -api-version
argument when compiling the module where the usage is located). If the API version is greater or equal than hiddenSince, the declaration will not be accessible from the code (as if it was deprecated with level DeprecationLevel.HIDDEN), otherwise if the API version is greater or equal than errorSince, the usage will be marked as an error (as with DeprecationLevel.ERROR), otherwise if the API version is greater or equal than warningSince, the usage will be marked as a warning (as with DeprecationLevel.WARNING), otherwise the annotation is ignored.
Since Kotlin
Marks the annotated declaration as deprecated. In contrast to Deprecated, severity of the reported diagnostic is not a constant value, but differs depending on the API version of the usage (the value of the -api-version
argument when compiling the module where the usage is located). If the API version is greater or equal than hiddenSince, the declaration will not be accessible from the code (as if it was deprecated with level DeprecationLevel.HIDDEN), otherwise if the API version is greater or equal than errorSince, the usage will be marked as an error (as with DeprecationLevel.ERROR), otherwise if the API version is greater or equal than warningSince, the usage will be marked as a warning (as with DeprecationLevel.WARNING), otherwise the annotation is ignored.
Since Kotlin
Marks the annotated declaration as deprecated. In contrast to Deprecated, severity of the reported diagnostic is not a constant value, but differs depending on the API version of the usage (the value of the -api-version
argument when compiling the module where the usage is located). If the API version is greater or equal than hiddenSince, the declaration will not be accessible from the code (as if it was deprecated with level DeprecationLevel.HIDDEN), otherwise if the API version is greater or equal than errorSince, the usage will be marked as an error (as with DeprecationLevel.ERROR), otherwise if the API version is greater or equal than warningSince, the usage will be marked as a warning (as with DeprecationLevel.WARNING), otherwise the annotation is ignored.
Since Kotlin
Possible levels of a deprecation. The level specifies how the deprecated element usages are reported in code.
Possible levels of a deprecation. The level specifies how the deprecated element usages are reported in code.
Possible levels of a deprecation. The level specifies how the deprecated element usages are reported in code.
Represents a double-precision 64-bit IEEE 754 floating point number. On the JVM, non-nullable values of this type are represented as values of the primitive type double
.
Represents a double-precision 64-bit IEEE 754 floating point number. On the JVM, non-nullable values of this type are represented as values of the primitive type double
.
Represents a double-precision 64-bit IEEE 754 floating point number.
An array of doubles. When targeting the JVM, instances of this class are represented as double[]
.
An array of doubles. When targeting the JVM, instances of this class are represented as double[]
.
When applied to annotation class X specifies that X defines a DSL language
Since Kotlin
When applied to annotation class X specifies that X defines a DSL language
Since Kotlin
When applied to annotation class X specifies that X defines a DSL language
Since Kotlin
The common base class of all enum classes. See the Kotlin language documentation for more information on enum classes.
The common base class of all enum classes. See the Kotlin language documentation for more information on enum classes.
The common base class of all enum classes. See the Kotlin language documentation for more information on enum classes.
The common base class of all enum classes. See the Kotlin language documentation for more information on enum classes.
Signals that the annotated annotation class is a marker of an experimental API.
Since Kotlin
The experimental multiplatform support API marker.
This annotation marks the standard library API that is considered experimental and is not subject to the general compatibility guarantees given for the standard library: the behavior of such API may be changed or the API may be removed completely in any further release.
Since Kotlin
Marks the API that is dependent on the experimental unsigned types, including those types themselves.
Signifies that the annotated functional type represents an extension function.
Signifies that the annotated functional type represents an extension function.
Signifies that the annotated functional type represents an extension function.
Represents a single-precision 32-bit IEEE 754 floating point number. On the JVM, non-nullable values of this type are represented as values of the primitive type float
.
Represents a single-precision 32-bit IEEE 754 floating point number. On the JVM, non-nullable values of this type are represented as values of the primitive type float
.
Represents a single-precision 32-bit IEEE 754 floating point number.
An array of floats. When targeting the JVM, instances of this class are represented as float[]
.
An array of floats. When targeting the JVM, instances of this class are represented as float[]
.
An array of floats.
Represents a value of a functional type, such as a lambda, an anonymous function or a function reference.
Represents a value of a functional type, such as a lambda, an anonymous function or a function reference.
Represents a value of a functional type, such as a lambda, an anonymous function or a function reference.
Represents a 32-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type int
.
Represents a 32-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type int
.
Represents a 32-bit signed integer.
An array of ints. When targeting the JVM, instances of this class are represented as int[]
.
An array of ints. When targeting the JVM, instances of this class are represented as int[]
.
An array of ints. When targeting the JVM, instances of this class are represented as int[]
.
Represents a version of the Kotlin standard library.
Since Kotlin
Specifies how a Lazy instance synchronizes initialization among multiple threads.
Represents a 64-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type long
.
Represents a 64-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type long
.
Represents a 64-bit signed integer.
An array of longs. When targeting the JVM, instances of this class are represented as long[]
.
An array of longs. When targeting the JVM, instances of this class are represented as long[]
.
An array of longs.
This annotation is present on any class file produced by the Kotlin compiler and is read by the compiler and reflection. Parameters have very short JVM names on purpose: these names appear in all generated class files, and we'd like to reduce their size.
Since Kotlin
Nothing has no instances. You can use Nothing to represent "a value that never exists": for example, if a function has the return type of Nothing, it means that it never returns (always throws an exception).
Nothing has no instances. You can use Nothing to represent "a value that never exists": for example, if a function has the return type of Nothing, it means that it never returns (always throws an exception).
Nothing has no instances. You can use Nothing to represent "a value that never exists": for example, if a function has the return type of Nothing, it means that it never returns (always throws an exception).
An exception is thrown to indicate that a method body remains to be implemented.
Superclass for all platform classes representing numeric values.
Superclass for all platform classes representing numeric values.
Superclass for all platform classes representing numeric values.
Allows to use the API denoted by the given markers in the annotated file, declaration, or expression. If a declaration is annotated with OptIn, its usages are not required to opt in to that API.
Since Kotlin
Marks an expected annotation class that it isn't required to have actual counterparts in all platforms.
Enables overload selection based on the type of the value returned from lambda argument.
Since Kotlin
Annotates type arguments of functional type and holds corresponding parameter name specified by the user in type declaration (if any).
Since Kotlin
Annotates type arguments of functional type and holds corresponding parameter name specified by the user in type declaration (if any).
Since Kotlin
Annotates type arguments of functional type and holds corresponding parameter name specified by the user in type declaration (if any).
Since Kotlin
When applied to a class or a member with internal visibility allows to use it from public inline functions and makes it effectively public.
Since Kotlin
When applied to a class or a member with internal visibility allows to use it from public inline functions and makes it effectively public.
Since Kotlin
When applied to a class or a member with internal visibility allows to use it from public inline functions and makes it effectively public.
Since Kotlin
Specifies a code fragment that can be used to replace a deprecated function, property or class. Tools such as IDEs can automatically apply the replacements specified through this annotation.
Specifies a code fragment that can be used to replace a deprecated function, property or class. Tools such as IDEs can automatically apply the replacements specified through this annotation.
Specifies a code fragment that can be used to replace a deprecated function, property or class. Tools such as IDEs can automatically apply the replacements specified through this annotation.
Signals that the annotated annotation class is a marker of an API that requires an explicit opt-in.
Since Kotlin
Represents a 16-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type short
.
Represents a 16-bit signed integer. On the JVM, non-nullable values of this type are represented as values of the primitive type short
.
Represents a 16-bit signed integer.
An array of shorts. When targeting the JVM, instances of this class are represented as short[]
.
An array of shorts. When targeting the JVM, instances of this class are represented as short[]
.
An array of shorts.
Specifies the first version of Kotlin where a declaration has appeared. Using the declaration and specifying an older API version (via the -api-version
command line option) will result in an error.
Specifies the first version of Kotlin where a declaration has appeared. Using the declaration and specifying an older API version (via the -api-version
command line option) will result in an error.
Specifies the first version of Kotlin where a declaration has appeared. Using the declaration and specifying an older API version (via the -api-version
command line option) will result in an error.
The String
class represents character strings. All string literals in Kotlin programs, such as "abc"
, are implemented as instances of this class.
The String
class represents character strings. All string literals in Kotlin programs, such as "abc"
, are implemented as instances of this class.
Suppresses the given compilation warnings in the annotated element.
Suppresses the given compilation warnings in the annotated element.
Suppresses the given compilation warnings in the annotated element.
The base class for all errors and exceptions. Only instances of this class can be thrown or caught.
The base class for all errors and exceptions. Only instances of this class can be thrown or caught.
This annotation indicates what exceptions should be declared by a function when compiled to a platform method in Kotlin/JVM and Kotlin/Native.
Since Kotlin
The type with only one value: the Unit
object. This type corresponds to the void
type in Java.
The type with only one value: the Unit
object. This type corresponds to the void
type in Java.
The type with only one value: the Unit
object. This type corresponds to the void
type in Java.
The type with only one value: the Unit
object.
Suppresses errors about variance conflict
Suppresses errors about variance conflict
Suppresses errors about variance conflict
Allows to use experimental API denoted by the given markers in the annotated file, declaration, or expression. If a declaration is annotated with UseExperimental, its usages are not required to opt-in to that experimental API.
Since Kotlin
Functions
When supported by the platform, adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.
Since Kotlin
When supported by the platform, adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.
Since Kotlin
Adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.
Since Kotlin
Adds the specified exception to the list of exceptions that were suppressed in order to deliver this exception.
Since Kotlin
Performs a bitwise AND operation between the two values.
Since Kotlin
Returns an array containing the specified elements.
Returns an array containing the specified elements.
Throws an AssertionError if the value is false and runtime assertions have been enabled on the JVM using the -ea JVM option.
Throws an AssertionError calculated by lazyMessage if the value is false and runtime assertions have been enabled on the JVM using the -ea JVM option.
Throws an AssertionError if the value is false and runtime assertions have been enabled during compilation.
Throws an AssertionError calculated by lazyMessage if the value is false and runtime assertions have been enabled during compilation.
Returns an array containing the specified boolean values.
Returns an array containing the specified boolean values.
Returns an array containing the specified boolean values.
Creates a Char with the specified code, or throws an exception if the code is out of Char.MIN_VALUE.code..Char.MAX_VALUE.code
.
Since Kotlin
Creates a Char with the specified code.
Since Kotlin
Creates a Char with the specified code.
Since Kotlin
Creates a Char with the specified code.
Since Kotlin
Returns an array containing the specified characters.
Returns an array containing the specified characters.
Returns an array containing the specified characters.
Throws an IllegalStateException if the value is false.
Throws an IllegalStateException with the result of calling lazyMessage if the value is false.
Throws an IllegalStateException if the value is null. Otherwise returns the not null value.
Throws an IllegalStateException with the result of calling lazyMessage if the value is null. Otherwise returns the not null value.
Counts the number of consecutive most significant bits that are zero in the binary representation of this Byte number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Int number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Long number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Short number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this UByte number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this UInt number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this ULong number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this UShort number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Int number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Long number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Int number.
Since Kotlin
Counts the number of consecutive most significant bits that are zero in the binary representation of this Long number.
Since Kotlin
Counts the number of set bits in the binary representation of this Byte number.
Since Kotlin
Counts the number of set bits in the binary representation of this Int number.
Since Kotlin
Counts the number of set bits in the binary representation of this Long number.
Since Kotlin
Counts the number of set bits in the binary representation of this Short number.
Since Kotlin
Counts the number of set bits in the binary representation of this UByte number.
Since Kotlin
Counts the number of set bits in the binary representation of this UInt number.
Since Kotlin
Counts the number of set bits in the binary representation of this ULong number.
Since Kotlin
Counts the number of set bits in the binary representation of this UShort number.
Since Kotlin
Counts the number of set bits in the binary representation of this Int number.
Since Kotlin
Counts the number of set bits in the binary representation of this Long number.
Since Kotlin
Counts the number of set bits in the binary representation of this Int number.
Since Kotlin
Counts the number of set bits in the binary representation of this Long number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Byte number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Int number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Long number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Short number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this UByte number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this UInt number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this ULong number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this UShort number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Int number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Long number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Int number.
Since Kotlin
Counts the number of consecutive least significant bits that are zero in the binary representation of this Long number.
Since Kotlin
Enables the use of the unary --
operator for BigDecimal instances.
Since Kotlin
Enables the use of the --
operator for BigInteger instances.
Since Kotlin
Enables the use of the /
operator for BigDecimal instances.
Enables the use of the /
operator for BigInteger instances.
Returns an enum entry with specified name.
Since Kotlin
Returns an enum entry with specified name.
Since Kotlin
Returns an array containing enum T entries.
Since Kotlin
Returns an array containing enum T entries.
Since Kotlin
Divides this value by the other value, flooring the result to an integer that is closer to negative infinity.
Since Kotlin
Returns the result of onSuccess for the encapsulated value if this instance represents success or the result of onFailure function for the encapsulated Throwable exception if it is failure.
Since Kotlin
Returns the Double value corresponding to a given bit representation.
Since Kotlin
Returns the Float value corresponding to a given bit representation.
Since Kotlin
Returns the Double value corresponding to a given bit representation.
Since Kotlin
Returns the Float value corresponding to a given bit representation.
Since Kotlin
Returns the Double value corresponding to a given bit representation.
Since Kotlin
Returns the Float value corresponding to a given bit representation.
Since Kotlin
An extension operator that allows delegating a read-only property of type V to a property reference to a property of type V or its subtype.
Since Kotlin
An extension operator that allows delegating a read-only member or extension property of type V to a property reference to a member or extension property of type V or its subtype.
Since Kotlin
Enables the use of the unary ++
operator for BigDecimal instances.
Since Kotlin
Enables the use of the ++
operator for BigInteger instances.
Since Kotlin
Inverts the bits including the sign bit in this value.
Since Kotlin
Returns true
if the argument is a finite floating-point value; returns false
otherwise (for NaN
and infinity arguments).
Returns true
if the argument is a finite floating-point value; returns false
otherwise (for NaN
and infinity arguments).
Returns true
if this value is infinitely large in magnitude.
Returns true
if this value is infinitely large in magnitude.
Returns true
if this value is infinitely large in magnitude.
Returns true
if the specified number is a Not-a-Number (NaN) value, false
otherwise.
Returns true
if the specified number is a Not-a-Number (NaN) value, false
otherwise.
Creates a new instance of the Lazy that uses the specified initialization function initializer.
Creates a new instance of the Lazy that uses the specified initialization function initializer and the default thread-safety mode LazyThreadSafetyMode.SYNCHRONIZED.
Creates a new instance of the Lazy that uses the specified initialization function initializer and thread-safety mode.
Creates a new instance of the Lazy that uses the specified initialization function initializer.
Creates a new instance of the Lazy that uses the specified initialization function initializer and the default thread-safety mode LazyThreadSafetyMode.SYNCHRONIZED.
Creates a new instance of the Lazy that uses the specified initialization function initializer and thread-safety mode.
Enables the use of the -
operator for BigDecimal instances.
Enables the use of the -
operator for BigInteger instances.
Calculates the remainder of flooring division of this value by the other value.
Since Kotlin
Performs a bitwise OR operation between the two values.
Since Kotlin
Enables the use of the +
operator for BigDecimal instances.
Enables the use of the +
operator for BigInteger instances.
Prints the detailed description of this throwable to the standard output or standard error output.
Since Kotlin
Prints the detailed description of this throwable to the standard error output.
Prints the detailed description of this throwable to the specified stream.
Prints the detailed description of this throwable to the specified writer.
Prints the detailed description of this throwable to console error output.
Since Kotlin
Prints the detailed description of this throwable to the standard output.
Since Kotlin
Returns the encapsulated result of the given transform function applied to the encapsulated Throwable exception if this instance represents failure or the original encapsulated value if it is success.
Since Kotlin
Returns the encapsulated result of the given transform function applied to the encapsulated Throwable exception if this instance represents failure or the original encapsulated value if it is success.
Since Kotlin
Enables the use of the %
operator for BigDecimal instances.
Enables the use of the %
operator for BigInteger instances.
Since Kotlin
Throws an IllegalArgumentException if the value is false.
Throws an IllegalArgumentException with the result of calling lazyMessage if the value is false.
Throws an IllegalArgumentException if the value is null. Otherwise returns the not null value.
Throws an IllegalArgumentException with the result of calling lazyMessage if the value is null. Otherwise returns the not null value.
Rotates the binary representation of this Byte number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Int number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Long number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Short number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this UByte number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this UInt number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this ULong number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this UShort number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Int number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Long number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Int number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Long number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Int number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Long number left by the specified bitCount number of bits. The most significant bits pushed out from the left side reenter the number as the least significant bits on the right side.
Since Kotlin
Rotates the binary representation of this Byte number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Int number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Long number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Short number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this UByte number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this UInt number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this ULong number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this UShort number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Int number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Long number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Int number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Long number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Int number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Rotates the binary representation of this Long number right by the specified bitCount number of bits. The least significant bits pushed out from the right side reenter the number as the most significant bits on the left side.
Since Kotlin
Calls the specified function block and returns its encapsulated result if invocation was successful, catching any Throwable exception that was thrown from the block function execution and encapsulating it as a failure.
Since Kotlin
Calls the specified function block with this
value as its receiver and returns its encapsulated result if invocation was successful, catching any Throwable exception that was thrown from the block function execution and encapsulating it as a failure.
Since Kotlin
An extension operator that allows delegating a mutable property of type V to a property reference to a mutable property of the same type V.
Since Kotlin
An extension operator that allows delegating a mutable member or extension property of type V to a property reference to a member or extension mutable property of the same type V.
Since Kotlin
Returns the detailed description of this throwable with its stack trace.
Since Kotlin
Returns the detailed description of this throwable with its stack trace.
Since Kotlin
Returns the detailed description of this throwable with its stack trace.
Since Kotlin
Returns the detailed description of this throwable with its stack trace.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Byte number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Short number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this UByte number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this UInt number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this ULong number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this UShort number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the most significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Byte number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Short number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this UByte number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this UInt number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this ULong number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this UShort number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Int number, or zero, if this number is zero.
Since Kotlin
Returns a number having a single bit set in the position of the least significant set bit of this Long number, or zero, if this number is zero.
Since Kotlin
Enables the use of the *
operator for BigDecimal instances.
Enables the use of the *
operator for BigInteger instances.
Returns the value of this BigInteger number as a BigDecimal.
Since Kotlin
Returns the value of this Double number as a BigDecimal.
Since Kotlin
Returns the value of this Float number as a BigDecimal.
Since Kotlin
Returns the value of this Int number as a BigDecimal.
Since Kotlin
Returns the value of this Long number as a BigDecimal.
Since Kotlin
Returns the value of this BigInteger number as a BigDecimal scaled according to the specified scale and rounded according to the settings specified with mathContext.
Since Kotlin
Returns the value of this Int number as a BigInteger.
Since Kotlin
Returns the value of this Long number as a BigInteger.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Long according to the IEEE 754 floating-point "double format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a bit representation of the specified floating-point value as Int according to the IEEE 754 floating-point "single format" bit layout, preserving NaN
values exact layout.
Since Kotlin
Returns a string representation of the object. Can be called with a null receiver, in which case it returns the string "null".
Returns a string representation of the object. Can be called with a null receiver, in which case it returns the string "null".
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Since Kotlin
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
Since Kotlin
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
Since Kotlin
Enables the use of the unary -
operator for BigDecimal instances.
Enables the use of the unary -
operator for BigInteger instances.
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
Since Kotlin
Performs a bitwise XOR operation between the two values.