Package-level declarations

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

Types

Link copied to clipboard

This annotation marks the experimental ObjCName annotation.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
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