Will

Results 45 comments of Will

Can we get non-panicking variants of the functions?

I personally haven't used it. Did more digging and I think I found a C program that uses UIs from `lilv`: https://sourcegraph.com/github.com/zrythm/zrythm@3b96d59f430c0a46050581473c9675807435095b/-/blob/src/plugins/lv2/lv2_ui.c?L395 I can probably look into it sometime in...

Ack, I'll find some pointers later tonight

Probably the high level plan should be: 1. Create an example that uses the raw `lilv` API. If you want to still use the `livi` layer as a helper, you...

# New function! `jack_port_rename` `jack_port_rename` isn't the in the bindings for `jack_sys`, so its probably relatively new. I probably need to make a cookbook for updated the bindings in a...

- Removed harhar from the error message. This code runs if the `process` callback has panicked. My guess is you called `unwrap` on `MidiWriter::.write`, which I guess is fine if...

genrally lgtm and is generally safer. Can you increment the version number to `0.12.0` as welll?

If you want to follow up with lint changes go ahead!

What's the status of this? It seems like `BigInts` are implemented. The following seems just fine in the terminal: ```scheme λ > (define x 10) λ > (+ x 1000000000000000000000000000000000000000000000000000000000000000000000)...

For implementation, what do you think of adding another variant to `SteelVal`: ```rust enum Fraction { Small(Rational32), Big(BigRational), } enum SteelVal { ... FractV(Fraction), ... } // We should stay...