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