Arvid Norberg
Arvid Norberg
modernize the interface a bit to take `span` rather than `std::vector`. For now, use our own `span` type, but this could use GSL or `std::span` in the future. The main...
The `select_reactor` has a `socket_select_interrupter` object used to signal an interruption via. It has a long-lived socket that's added to the `select()` call to make it wake up on an...
The technical specification defines most member functions on `basic_endpoint` and `address` as `noexcept`. I'm especially interested in having these types be `nothrow_move_constructible` and `nothrow_move_assignable`. Would you be open to a...
rely on the existing unit tests in src/test_ops.rs This is a step towards untangling `clvm_rs` from `clvm` and `clvm_tools`, which will allow us to change `clvm_tools`'s `brun` to report accurate...
the `mpz_import` and `mpz_export` functions are quite a bit slower than the `num-bigint` counterparts, so this slows down the benchmarks somewhat. The rationale for this is: 1. use more main-stream...