Adam C. Foltzer
Adam C. Foltzer
Both `new-configure` and `new-build` seem to silently swallow these options at the moment.
My first stab at this code was as follows: ```rust for c in "The quick brown fox jumps over the lazy dog.".chars() { usart1.tdr.write(|w| w.tdr(u16::from(c as u8))); } ``` Using...
An important customer of ours is very interested in using [HTTP 103 Early Hints](https://tools.ietf.org/html/rfc8297) to lower the perceived latency experienced by their end users. This requires the ability to return...
Issue #32 describes a class of errors where `deserialize_str` (and `deserialize_bytes`) have match expressions that fall through to an error when the `Text` (`Bytes`) lengths are longer than can fit...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Code of Conduct - [X] I agree to follow this project's Code of...
From a Safe Haskell perspective, the following combination is safe: ``` haskell instance MonadIO Par runParIO :: Par a -> IO a ``` However, if this instance exists alongside `runPar...
## The Problem Right now, the Val type is this: ``` haskell data Val = Var Id | String String | Integer Integer | Bool Bool | Pair (Val,Val) |...
Currently the tests are just a bunch of top-level definitions. We need an actual test runner to make sure they're producing consistent results
This change eliminates the need to run %load_ext ghcjmagic in a cell before evaluating things as Haskell code