Package-level declarations

Experimental APIs, subject to change in future versions of Kotlin.

Types

Link copied to clipboard

This annotation marks the Kotlin/Native-only 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 1.9
Link copied to clipboard

This annotation marks the experimental ObjCName annotation.

Since Kotlin 1.8
Link copied to clipboard

This annotation marks the experimental Objective-C export refinement annotations.

Since Kotlin 1.8
Link copied to clipboard

The experimental marker for type inference augmenting annotations.

Since Kotlin 1.3

Functions

Link copied to clipboard
infix inline fun Byte.and(other: Byte): Byte
infix inline fun Short.and(other: Short): Short

Performs a bitwise AND operation between the two values.

Since Kotlin 1.1
Link copied to clipboard
inline fun Byte.inv(): Byte
inline fun Short.inv(): Short

Inverts the bits in this value.

Since Kotlin 1.1
Link copied to clipboard
infix inline fun Byte.or(other: Byte): Byte
infix inline fun Short.or(other: Short): Short

Performs a bitwise OR operation between the two values.

Since Kotlin 1.1
Link copied to clipboard
infix inline fun Byte.xor(other: Byte): Byte
infix inline fun Short.xor(other: Short): Short

Performs a bitwise XOR operation between the two values.

Since Kotlin 1.1