Skip to content

Instantly share code, notes, and snippets.

@tw-Frey
Forked from seanghay/result-of-basic.kt
Created January 17, 2023 08:37
Show Gist options
  • Save tw-Frey/380ce79ac88a7d5b4a3a708520012909 to your computer and use it in GitHub Desktop.
Save tw-Frey/380ce79ac88a7d5b4a3a708520012909 to your computer and use it in GitHub Desktop.
/* Copyright 2020 Seanghay Yath (@seanghay)
SPDX-License-Identifier: Apache-2.0 */
sealed class ResultOf<out T> {
data class Success<out R>(val value: R): ResultOf<R>()
data class Failure(
val message: String?,
val throwable: Throwable?
): ResultOf<Nothing>()
}