Error

data class Error<T>(val exception: Exception? = null) : ResultData<T>

Constructors

Link copied to clipboard
constructor(exception: Exception? = null)

Properties

Link copied to clipboard
val exception: Exception? = null

Functions

Link copied to clipboard
fun <T, R> ResultData<T>.map(fn: (T) -> R): ResultData<R>
Link copied to clipboard