Simon Vergauwen
Simon Vergauwen
Super awesome work @1Jajen1 👏 👏 👏 All your suggestions sounds perfect for me! Will try to make some time tomorrow to review but it's not going to be easy...
The setup is not done yet, so I prefer to keep this open. The config in Arrow is still WIP, and we also still need to setup renovate etc with...
> I am also trying to get a concurrent instance using this but I have one problem: A type like OptionT has a case where the A may not be...
@1Jajen1 `AtomicRefW` is a simple wrapper around `atomic-fu` which is compiler generated and erased. The reason for the wrapper is that `atomic-fu` is a compiler generator for [`AtomicReferenceFieldUpdater`](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicReferenceFieldUpdater.html). Which means...
Also we should re-investigate this for `suspend`! Having a suspend base control would be quite powerful.
@1Jajen1 I'm not sure if you looked at [FreeC](https://github.com/arrow-kt/arrow/blob/master/modules/streams/arrow-streams/src/main/kotlin/arrow/streams/internal/FreeC.kt) which is like `Free` but it also deals with unexpected occurring errors. @raulraja I am assuming we still want to upgrade...
Well, @1Jajen1 `FreeC` was originally built as a foundation for `Stream`, where this additional power is needed. I'm fine with keeping it internal in `arrow-streams` but I still think it's...
@Ph1b how must I set the behaviour to the FAB?
Hey @taartspi, Yes, I replaced the `pigpio` with `gpiod`. Here is my dependency list: ```kotlin dependencies { api("org.slf4j:slf4j-api:2.0.12") api("org.slf4j:slf4j-simple:2.0.12") api("com.pi4j:pi4j-core:2.5.1") api("com.pi4j:pi4j-plugin-raspberrypi:2.5.1") api("com.pi4j:pi4j-library-gpiod:2.5.1") api("com.pi4j:pi4j-plugin-gpiod:2.5.1") } ``` Here is my full [Gradle...
Hey @toddobryan, It currently doesn't, but we can support it. We can build is similar to `every` but looking into the `Keys` instead of `JsonElement`. https://github.com/nomisRev/kotlinx-serialization-jsonpath/blob/29ee6f19026f39a27ca9506565dd0f57a63aa602/src/commonMain/kotlin/io/github/nomisrev/JsonPathEvery.kt#L60 A PR would be...