Skip to content

Instantly share code, notes, and snippets.

@khahani
Created September 17, 2023 16:43
Show Gist options
  • Select an option

  • Save khahani/4da29b4a0b678379fe4b0d8bea4ae6f4 to your computer and use it in GitHub Desktop.

Select an option

Save khahani/4da29b4a0b678379fe4b0d8bea4ae6f4 to your computer and use it in GitHub Desktop.
Result.kt
sealed interface Result<out T> {
data class Success<T>(val data: T) : Result<T>
data class Error(val exception: Throwable? = null) : Result<Nothing>
data object Loading : Result<Nothing>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment