//shared/org.readium.r2.shared.util/Try/Companion
Companion¶
[androidJvm]\ object Companion
Functions¶
| Name | Summary |
|---|---|
| failure | [androidJvm] fun <Failure : Throwable> failure(failure: Failure): Try<Nothing, Failure> Returns the encapsulated Throwable exception if this instance represents failure or null if it is success. |
| success | [androidJvm] fun <Success> success(success: Success): Try<Success, Nothing> Returns an instance that encapsulates the given value as successful value. |