kotlin.Boolean

Boolean

class Boolean : Comparable<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.

Functions

and

infix fun and(other: Boolean): Boolean

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

compareTo

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.

not

operator fun not(): Boolean

Returns the inverse of this boolean.

or

infix fun or(other: Boolean): Boolean

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

xor

infix fun xor(other: Boolean): Boolean

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

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部