Mark Schultz-Wu
Mark Schultz-Wu
Consider a library with the following directory structure (no playground because multiple files, but [this git repository](https://github.com/mark-schultz/doctest)). ``` src ├── lib.rs ├── module_one.rs └── module_two.rs ``` where `module_one.rs` is ```rust...
This kind of implementation seems fairly natural for big-int libraries (for example [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek/blob/b307c155c966c16b81f63a5872a1ec1977829ddf/src/backend/serial/u64/field.rs#L220) essentially does this for the specific type `[u64; 5]`). Now that min-const-generics are stabilized, it would nice...
I was trying to use don't print on [this page](https://eprint.iacr.org/2013/499), and am getting the error: `Timeout while trying to retrieve article meta data. Are you connected to the internet?` I'm...
When starting math mode the cursor is advanced to an odd position. Typing `$$` yields `$$ $^$` where `^` is the position of the curser afterwords.
The test suite for Applicative.hs accepts the following code: () (f :. fs) xs = (f xs) ++ (fs xs) () _ _ = Nil and rejects the following code:...