Thomas den Hollander
Thomas den Hollander
Adds two doc examples, one in the crate root and another for `ArrayString`.
I'm thinking of how to proceed with further verification done by beancount. For example the balancing of transactions. Beancount manipulates transactions during parsing, for example it fills empty postings and...
Beancount [has a specific system for dealing with precision](https://beancount.github.io/docs/precision_tolerances.html), but it can handle arbitrarily large precision. Currently this crate uses `rust_decimal`, which has a 128 bit integer under the hood....
Is the crate ready for a first version on `crates.io`? If not, what are the requirements?
Using the function `configure_from_args` on the `Criterion` object changes it, but I would expect it doesn't. In particular: ```rust Criterion::default(); // Produces monochrome text Criterion::default().configure_from_args(); // Produces colored text, even...
I think `Match` could be improved in the following way: - `i` and `j` currently indicate character positions. Instead, I think it would be better to replace them by a...
The naming of the functions in the `number` module are potentially confusing as there is a semantic difference between the functions. Most of them expect literal bytes representing the number....
I have a question that might be clarified in the documentation. Is Arbitrary supposed to be exactly uniformly distributed? Or is it supposed to be quick? For example, I can...
First of all, thanks for this tool, it's great! Just so you know, I think the [`queryFilter`](vaultsReceived) method is missing from contracts in Ethers.js. I've linked the documentation.
This PR contains a number of utility methods. I have also ran `cargo clippy`. Where applicable, I have created Rust types with conversion to/from Typescript. This should make the code...