retrofit-adapters-demo
1.0.2
retrofit-adapters-arrow
/
com.skydoves.retrofit.adapters.arrow
Package
com.
skydoves.
retrofit.
adapters.
arrow
Types
Functions
Types
Either
Call
Adapter
Factory
Link copied to clipboard
class
EitherCallAdapterFactory
:
CallAdapter.Factory
Content copied to clipboard
Functions
fold
Suspend
Link copied to clipboard
inline suspend
fun
<
A
,
B
,
C
>
Either
<
A
,
B
>
.
foldSuspend
(
crossinline
ifLeft
:
suspend
(
A
)
->
C
,
crossinline
ifRight
:
suspend
(
B
)
->
C
)
:
C
Content copied to clipboard
on
Left
Suspend
Link copied to clipboard
inline suspend
fun
<
A
,
B
,
C
>
Either
<
A
,
B
>
.
onLeftSuspend
(
crossinline
onLeft
:
suspend
(
A
)
->
C
)
:
Either
<
A
,
B
>
Content copied to clipboard
on
Right
Suspend
Link copied to clipboard
inline suspend
fun
<
A
,
B
,
C
>
Either
<
A
,
B
>
.
onRightSuspend
(
crossinline
onRight
:
suspend
(
B
)
->
C
)
:
Either
<
A
,
B
>
Content copied to clipboard