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.

Since Kotlin

1.0

Represents a value which is either true or false.

Since Kotlin

1.1

Represents a value which is either true or false.

Since Kotlin

1.3

Represents a value which is either true or false.

Since Kotlin

1.8

Represents a value which is either true or false.

Since Kotlin

1.8

Types

Link copied to clipboard
object Companion
Since Kotlin 1.3
object Companion
Since Kotlin 1.3
object Companion
Since Kotlin 1.3
object Companion
Since Kotlin 1.8
object Companion
Since Kotlin 1.8

Functions

Link copied to clipboard
infix fun and(other: Boolean): Boolean

Performs a logical and operation between this Boolean and the other one. Unlike the && operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.0
infix fun and(other: Boolean): Boolean

Performs a logical and operation between this Boolean and the other one. Unlike the && operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.1
infix external fun and(other: Boolean): Boolean

Performs a logical and operation between this Boolean and the other one. Unlike the && operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.3
infix fun and(other: Boolean): Boolean

Performs a logical and operation between this Boolean and the other one. Unlike the && operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.8
infix fun and(other: Boolean): Boolean

Performs a logical and operation between this Boolean and the other one. Unlike the && operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.8
Link copied to clipboard
open operator override fun compareTo(other: Boolean): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

Since Kotlin 1.0
open operator override fun compareTo(other: Boolean): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

Since Kotlin 1.1
open operator external override fun compareTo(other: Boolean): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

Since Kotlin 1.3
open operator override fun compareTo(other: Boolean): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

Since Kotlin 1.8
open operator override fun compareTo(other: Boolean): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

Since Kotlin 1.8
Link copied to clipboard
infix inline fun <T> Comparable<T>.compareTo(other: T): Int

Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other.

Since Kotlin 1.6
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Since Kotlin 1.0
open operator override fun equals(other: Any?): Boolean
Since Kotlin 1.1
open operator override fun equals(other: Any?): Boolean
Since Kotlin 1.3
open operator override fun equals(other: Any?): Boolean
Since Kotlin 1.8
open operator override fun equals(other: Any?): Boolean
Since Kotlin 1.8
Link copied to clipboard
open override fun hashCode(): Int
Since Kotlin 1.0
open override fun hashCode(): Int
Since Kotlin 1.1
open override fun hashCode(): Int
Since Kotlin 1.3
open override fun hashCode(): Int
Since Kotlin 1.8
open override fun hashCode(): Int
Since Kotlin 1.8
Link copied to clipboard
operator fun not(): Boolean

Returns the inverse of this boolean.

Since Kotlin 1.0
operator fun not(): Boolean

Returns the inverse of this boolean.

Since Kotlin 1.1
operator external fun not(): Boolean

Returns the inverse of this boolean.

Since Kotlin 1.3
operator fun not(): Boolean

Returns the inverse of this boolean.

Since Kotlin 1.8
operator fun not(): Boolean

Returns the inverse of this boolean.

Since Kotlin 1.8
Link copied to clipboard
infix fun or(other: Boolean): Boolean

Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.0
infix fun or(other: Boolean): Boolean

Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.1
infix external fun or(other: Boolean): Boolean

Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.3
infix fun or(other: Boolean): Boolean

Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.8
infix fun or(other: Boolean): Boolean

Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.

Since Kotlin 1.8
Link copied to clipboard
inline fun Boolean.toByte(): Byte
Since Kotlin 1.3
Link copied to clipboard
Since Kotlin 1.8
Link copied to clipboard
open override fun toString(): String
Since Kotlin 1.0
open override fun toString(): String
Since Kotlin 1.1
open override fun toString(): String
Since Kotlin 1.3
open override fun toString(): String
Since Kotlin 1.8
open override fun toString(): String
Since Kotlin 1.8
Link copied to clipboard
infix fun xor(other: Boolean): Boolean

Performs a logical xor operation between this Boolean and the other one.

Since Kotlin 1.0
infix fun xor(other: Boolean): Boolean

Performs a logical xor operation between this Boolean and the other one.

Since Kotlin 1.1
infix external fun xor(other: Boolean): Boolean

Performs a logical xor operation between this Boolean and the other one.

Since Kotlin 1.3
infix fun xor(other: Boolean): Boolean

Performs a logical xor operation between this Boolean and the other one.

Since Kotlin 1.8
infix fun xor(other: Boolean): Boolean

Performs a logical xor operation between this Boolean and the other one.

Since Kotlin 1.8