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