getOrThrow

inline fun <T> Result<T>.getOrThrow(): T(source)

Returns the encapsulated value if this instance represents success or throws the encapsulated Throwable exception if it is failure.

This function is a shorthand for getOrElse { throw it } (see getOrElse).

Since Kotlin

1.3