Andrej Fink
Andrej Fink
https://github.com/softwaremill/jox/issues/187 Not true "native" implementation, but more efficient than in the test example More efficient default defaultClause for values and null
At least trySend() 🙏 TL;DR Add non-blocking trySend(T) and tryReceive() methods to Channel to enable integration with NIO frameworks (Netty, Vert.x, etc.), where blocking the event loop thread is prohibited....
For monitoring, metrics and UnlimitedChannels it would be very useful to have Channel.estimateSize() or Channel.size() 🙏
For consistency between FIFO and Heap queues: I have added the same methods (capacity, toArray, toString) also for Heap Priority Queues. Results of toArray, toString are not sorted (for implementation...
``` @Test void _bug_write_array0 () { val o = new it.unimi.dsi.fastutil.io.FastByteArrayOutputStream (); o.write(new byte[]{1,2,3,4,5}); assertEquals(5, o.length()); assertEquals(5, o.position()); o.position(0); o.write(new byte[]{1,2,3}); assertEquals(5, o.length()); assertEquals(0, o.position());//!!! MUST be 3: 0+3 }...
Could you please test and declare an official support for Java 25 LTS 🙏 https://ignite.apache.org/docs/ignite2/latest/quick-start/java has only Java 11 and 17 😱
Thank You for an amazing project! Small changes you could find useful 🤝 1) force project indentation rules (4-8 spaces) in .editorconfig 2) fix .gitignore: all subprojects have "out" sub-directory:...