kotlin-result
1.1.14
kotlin-result
/
com.github.michaelbull.result
/
recover
recover
infix inline
fun
<
V
,
E
>
Result
<
V
,
E
>
.
recover
(
transform
:
(
E
)
->
V
)
:
Ok
<
V
>
Content copied to clipboard
Returns the
transformation
of the
error
if this
Result
is
Err
, otherwise this
Ok
.