kotlin-result
1.1.14
kotlin-result
/
com.github.michaelbull.result
/
onSuccess
on
Success
infix inline
fun
<
V
,
E
>
Result
<
V
,
E
>
.
onSuccess
(
action
:
(
V
)
->
Unit
)
:
Result
<
V
,
E
>
Content copied to clipboard
Invokes an
action
if this
Result
is
Ok
.