Peter G
Peter G
Hi @nomisRev, thanks for your quick and helpful reply! Ktorfit looks pretty neat and it's good to know about this option. However I'm planning to delve into Ktor extensively since...
Hi @nomisRev, As soon as I migrate from Retrofit to Ktor to make my app multiplatform compatible I will consider working on this feature. Right now I have zero knowledge...
> Hi @nomisRev and @postfixNotation > > would be interested to work on that and provide a PR > > I have experimented a bit and already have a basic...
> Here is my result so far: https://github.com/abendt/arrow-ktor/blob/main/src/main/kotlin/demo/ExampleApi.kt > > There you can see how you can use `Either` in your Ktorfit client. Should also be possible to support some...
This is one of two declaration variants in my code: ``` @OptIn(ExperimentalTime::class) private val retryPolicy = Schedule .exponential(10.milliseconds) .whileOutput { it < 3.seconds } ``` I know `whileOutput` was replaced...
Hi @serras, I just double-checked. I'm using the most recent Dagger KSP and KSP plugin versions. None of the libraries I use for my module use KAPT. However, if I...
> @postfixNotation has this improved with 1.2.4? @serras unfortunately it didn't.
Good and helpful ideas, but if you have many type checks you might still end up with lots of boilerplate. Reducing boilerplate was probably also the intention of Arrow's `toOption`...