Files
kotlin-fork/libraries/stdlib/wasm/builtins/kotlin/Boolean.kt
T
2023-08-24 08:59:49 +00:00

74 lines
2.4 KiB
Kotlin

/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
// Auto-generated file. DO NOT EDIT!
@file:Suppress("UNUSED_PARAMETER")
package kotlin
import kotlin.wasm.internal.*
/** Represents a value which is either `true` or `false`. */
@WasmAutoboxed
public class Boolean private constructor(private val value: Boolean) : Comparable<Boolean> {
@SinceKotlin("1.3")
public companion object {}
/** Returns the inverse of this boolean. */
@kotlin.internal.IntrinsicConstEvaluation
@WasmOp(WasmOp.I32_EQZ)
public operator fun not(): Boolean =
implementedAsIntrinsic
/**
* 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.
*/
@kotlin.internal.IntrinsicConstEvaluation
@WasmOp(WasmOp.I32_AND)
public infix fun and(other: Boolean): Boolean =
implementedAsIntrinsic
/**
* 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.
*/
@kotlin.internal.IntrinsicConstEvaluation
@WasmOp(WasmOp.I32_OR)
public infix fun or(other: Boolean): Boolean =
implementedAsIntrinsic
/** Performs a logical `xor` operation between this Boolean and the [other] one. */
@kotlin.internal.IntrinsicConstEvaluation
@WasmOp(WasmOp.I32_XOR)
public infix fun xor(other: Boolean): Boolean =
implementedAsIntrinsic
@kotlin.internal.IntrinsicConstEvaluation
public override fun compareTo(other: Boolean): Int =
wasm_i32_compareTo(this.toInt(), other.toInt())
@kotlin.internal.IntrinsicConstEvaluation
override fun toString(): String =
if (this) "true" else "false"
@kotlin.internal.IntrinsicConstEvaluation
override fun equals(other: Any?): Boolean {
return if (other !is Boolean) {
false
} else {
wasm_i32_eq(this.toInt(), other.toInt())
}
}
override fun hashCode(): Int =
if (this) 1231 else 1237
@WasmNoOpCast
internal fun toInt(): Int =
implementedAsIntrinsic
}