Simon Vergauwen
Simon Vergauwen
In order to fully support articles we need to implement a DELETE article comments for slug with comment id, according to [following OpenAPI Spec](https://github.com/gothinkster/realworld/blob/main/api/openapi.yml). ```yaml /articles/{slug}/comments/{id}: delete: tags: - Comments...
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: delete: tags: - Favorites summary: Unfavorite an...
When using KtFmt (Google style) together with [KotlinX Knit](https://github.com/Kotlin/kotlinx-knit) tool it reports incorrectly formatted code for markers for Knit inside KDocs. ``` Execution failed for task ':spotlessKotlinCheck'. > The following...
When using Dokka with Knit, and following the instructions from the README.MD I see that a large portion of the README.MD is dropped in the generated Dokka website. I'm not...
For a `sealed class` with following shape you can generate a `val name: Lens`. ``` sealed class Example { abstract val name: String data class One(override val name: String, val...
Implement Indexed Optics in Arrow-optics. i.e. `IndexedTraversal` It allows for working with traversable structures based on `indexes`, i.e. traverse a matrix diagonally (or any custom pattern). References: https://github.com/hablapps/Monocle/blob/indexed/core/shared/src/main/scala/monocle/ITraversal.scala http://hackage.haskell.org/package/lens-4.17.1/docs/Control-Lens-Traversal.html#t:IndexedTraversal The...
What version are you currently using? `0.10.4` What would you like to see? `FilterIndex` syntax fore the Optics DSL. The syntax for filterIndex does not exist yet in the DSL....
See: https://github.com/arrow-kt/arrow/compare/sv-rr-arrow-generic