Fifnmar
Results
2
issues of
Fifnmar
[This crate](https://github.com/Bajix/const-assert/) implements const assertions with trait bounds, rendering it possible to write conditional `impl` blocks. Integrating that functionality into this crate could enrich its compile-time checking abilities.
Zig has well-defined [return copy elision](https://github.com/ziglang/zig/issues/287). If we define the wrapper functions to be inline, then many copies from a semantical view would be eliminated. For example: ```zig pub fn...