odenix
odenix
``` l = new Listing { "foo" } l2 = (l) { [0] = "bar" } l3 = new Listing { ...l2 } ``` The error message correctly complains about...
https://github.com/jspecify/jspecify https://jspecify.dev/ Motivation: * JSR 305 has been dead for a decade. * JSR 305 has many known issues: incompatible with Java module system, unclear semantics, no official support for...
Occasionally it can be useful to evaluate just an expression. Currently, `pkl eval -x` requires to also specify a module. A cross-platform workaround is `pkl eval pkl:base -x`. However, it...
Consider the following code: ```java import java.nio.ByteBuffer; interface BufferAllocator { /// Returns a lease for a [ByteBuffer] with at least the specified [capacity][ByteBuffer#capacity]. LeasedByteBuffer getByteBuffer(long minCapacity); } ``` Formatting the...
I released a new Java/Kotlin MessagePack library ([MiniPack](https://github.com/odenix/minipack)) and followed the instructions to add `msgpack.org[Java]` to its GitHub project description. However, 48 hours later, my library is not listed on...