Pablisco
Pablisco
Extends `Cursor` to provide functions to check i the cursor is empty or not ## Usage if(cursor.isEmpty()) { // we can show an empty screen } if(cursor.isNotEmpty()) { // We...
closes #433 This PR moves the junit dependency from the production scope to the test scope to avoid leaking it when deploying the artifact.
We found a situation where we wanted to execute a call synchronously and still make use of coroutines. Long story short: we were doing async calls inside our Authenticator. This...
This is a demo app to verify how In-App Updates work: https://developer.android.com/guide/app-bundle/in-app-updates
In order to evaluate if a change increases or reduces performance and/or memory we should add some form of benchmarks suite. As an strech goal, it would be great to...
Now that we have KMP support for JS and we have multiple builds for different JVM environments, we should explore running different builds in parallel to speed up build times...
Currently, [these](https://github.com/arrow-kt/arrow/pull/2396/files#diff-358fc8e67988b210795cfc3652585542f79fbed9374c401050393b20a3f46a5bR6) are defined without property testing. We should define some Laws for this functionality. Similar to how they are defined [here](https://github.com/arrow-kt/arrow/blob/1d2771f057d398115823e882e066b8c654a68711/arrow-libs/core/arrow-core/src/test/kotlin/arrow/core/EitherTest.kt) for Either.
Make sure we have visibility of [this feature](https://github.com/arrow-kt/arrow/pull/2396) on the website. There is two options here: - We could have a dedicated section for comprehensions where we include `Iterable` comprehensions...
Adding the `infix` to the `stub` function will allow for a more dsl format: ```kotlin myMock stub { on { call() } doReturn someMagicResult } ```
Enables sonar cloud in this repo. To be merged after #89