aboutsummaryrefslogtreecommitdiffstats
path: root/stdlib-stubs/src/Result.kt
blob: d873ac8902d769fadfae5b4228d86d852704af66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlin

public interface Result<out T> {
    public val value: T
    public val isSuccess: Boolean
    public val isFailure: Boolean
    public fun exceptionOrNull(): Throwable?
    public fun getOrNull(): T?
    public fun getOrThrow(): T
}