Wojciech Litewka
Wojciech Litewka
I do want to be able to write my own implementation for (some) immutable collections and thus I'd like to keep the interface approach, at least a thin abstract classes...
OK, I have read more about bit-mapped trie structure and now I understand that it is, generally speaking, optimal. (Funny enough it appears that I have invented this struct myself,...
FWIW Compose, which is considered production ready, does use (a copy of) this library internally - https://github.com/androidx/androidx/tree/androidx-main/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable
#### To OP (@GenuineAster): Interesting thread as I'm in somewhat similar situation technical-wise. I plan to build the whole 2D game in the web land, but because of lower level...
@ScottPierce Is there a way to run R8 selectively on jars e.g. not to obfuscate (certain) third-parties instead of user-jar way? This has to be somewhat easily hackable to achieve...
I finally managed to do that with ProGuard ([example setup](https://gist.github.com/mcpiroman/cf511c5f9312a59e8f821706738eeab3)), without uberjar though. It's actually not *that* hard. I guess it should be similar for R8.
I mean to add an option to pass to a `dataSections` not only a predefined list of names but also a callback that would decide if given section is a...
This started popping up for me as well, my current setup is: `libs.versions.toml`: ``` ## Generated by $ ./gradlew refreshVersionsCatalog [plugins] kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin"...
In `struct sigaction` , `sa_handler` is being set explicitly and now `sa_mask` is being set via `sigemptyset()`, so `memset()` really only inits `sa_flags` to 0. So `memset()` could be replaced...
> Where in the spec does it say that? I was refering to the book "The Linux programming interface". Relevent quotes: > On Linux, as on most UNIX implementations, the...