Robin Freyler

Results 177 issues of Robin Freyler

`wasmi` WebAssembly interpreter is missing from the list of WebAssembly runtimes. While it is not a super efficient JIT engine like the others, it can do pretty much the same...

Original idea: https://github.com/dtolnay/trybuild/issues/35 Suggested approach: https://github.com/dtolnay/trybuild/issues/35#issuecomment-539253118 ## Solution Summary `cargo expand` should be able to expand the code of a test file `somename.rs` in the `tests` directory of a given...

Our fuzz tests are slow. Since it is the nature of fuzz tests to take a long time we should make them separate from other tests with a crate feature...

More information here: https://www.chosenplaintext.ca/articles/radix-2-51-trick.html

To increase or decrease the value of an `ApInt` instance by one today a user has to instantiate another `ApInt` with the same bit width of value representing one (`1`)...

enhancement

Currently `ApInt` only provides printing via the `fmt::Debug` trait implementation which offers internal debug information about each instance but is not suitable for simple printing of values. Due to the...

enhancement

To display the contents of an `ApInt` users currently can only use its implementation of `fmt::Debug`. This is unfortunate for cases where the user just requires simple printing of values...

enhancement