Eva
Eva
What problem does this solve? We generally want to be conservative with kotlin version updates to make it more flexible for consumers.
Hm good point, maybe a separate collection overload?
Looks like this is impossible without https://youtrack.jetbrains.com/issue/KT-13198
There concern here is that `containsExactly()` cares about the _order_ of the elements, but not all iterable collections have a stable order. For example: ```kotlin assertThat(hashSetOf("one", "two")).containsExactly("one", "two") ``` would...
I think this is blocked by ksp as there doesn't seem a way to distinguish between `String.(Int) -> Boolean` and `(String, Int) -> Boolean` unless I'm missing something? Opened an...
@PaulWoitaschek agreed on the test cases. In fact the primary reason this is just in draft is because it needs more tests!
You talking specifically about trying to generate common code with it? ```kotlin dependencies { add("kspMetadata", "me.tatarka.inject:kotlin-inject-compiler-ksp:0.3.7-RC") } ``` my understanding is the `kspMetadata` no longer exists. You can add it...
@NicolaVerbeeck I tried to update the sample but I'm getting ``` Task with path 'kspCommonMainKotlinMetadata' not found in root project 'echo'. ``` is there something I'm missing?
1.6.21-1.0.5
Right good point, will take a closer look