Simon Vergauwen
Simon Vergauwen
Shift doesn't need stack trace creation, and it's almost never useful for `shift`. So ideally we put this behind a `DEBUG` flag, similar to how KotlinX deals with this. https://github.com/Kotlin/kotlinx.coroutines/blob/d88a8c227a295f91251960c8fe6b21a02ddf704b/kotlinx-coroutines-core/jvm/src/Debug.kt#L36
In most HOF in Arrow we can specify `AT_MOST_ONCE` and `EXACTLY_ONCE`. Currently, we're not doing so, and this prevents certain code to be written that would otherwise be valid.
The `example` module currently doesn't setup the Java app. Upon setting up the `example` module we ran into some issues setting up Java from a Kotlin MPP project. It didn't...
What version are you currently using? 1.x.x What would you like to see? Sometimes it's not clear why `Either` cannot be `bind` inside `either { }`, and similarly with other...
This ticket tracks classes that are lacking in test coverage. All of this code has been stable for a long time, but it's a good way to get familiar with...
What version are you currently using? 1.2.0-RC What would you like to see? > The KDoc is minimal and lacks examples. For example, on raise() we have just "Raise a...
In order to fully support articles we need to implement a POST article comments for slug, according to [following OpenAPI Spec](https://github.com/gothinkster/realworld/blob/main/api/openapi.yml). ```yaml post: tags: - Comments summary: Create a comment...
In order to fully support articles we need to implement a GET article comments for slug, according to [following OpenAPI Spec](https://github.com/gothinkster/realworld/blob/main/api/openapi.yml). ```yaml /articles/{slug}/comments: get: tags: - Comments summary: Get comments...
In order to fully support profiles we need to implement a _DELETE unfollow profile by username_, according to [following OpenAPI Spec](https://github.com/gothinkster/realworld/blob/main/api/openapi.yml). ```yaml /profiles/{username}/follow: delete: tags: - Profile summary: Unfollow a...
In order to fully support articles we need to implement a POST article favorite for slug, according to [following OpenAPI Spec](https://github.com/gothinkster/realworld/blob/main/api/openapi.yml). ```yaml /articles/{slug}/favorite: post: tags: - Favorites summary: Favorite an...