Markus Mottl
Markus Mottl
Consider the following text file containing a UTF character followed by newline: ```zsh ❯ cat foo.txt ━ ``` Here is the hex dump for clarity: ```zsh ❯ xxd -p foo.txt...
This branch implements changes to the union-find implementation to make it more efficient by removing indirections, thus eliminating extra heap blocks and pointer dereferencing. This is achieved by combining GADTs...
This branch implements the same kind of efficiency improvement as the one recently submitted for the union-find algorithm. Though the patch touches many lines, the vast majority of changes are...
## Information **VIM version** VIM - Vi IMproved 9.1 (2024 Jan 02, compiled Jun 18 2024 19:01:23) macOS version - arm64 Operating System: macOS X Sonoma 14.5 ## What went...
Aeron already provides for functions like `aeron_publication_offerv` to combine multiple I/O vectors into a single message. Would it be possible to support operations that treat each I/O vector as an...
```sh ❯ rustfmt --version rustfmt 1.8.0-stable (4d91de4e48 2025-02-17) ``` Consider the following file `foo.rs`: ```rust fn f() {} // This has trailing whitespace ``` The trailing whitespace remains when calling...
# Artio Hangs Until Own Heartbeat After Resend Request ## Environment - Tested Artio versions: 0.162 and 0.164 - Platform: MacOS 15.3 - Java: JDK 21 While trying to debug...
The following code demonstrates inconsistent behavior between the `List.init` function in `Base` and the same function in the OCaml standard library due to an incorrect evaluation order of list elements:...