bodil.github.com
bodil.github.com copied to clipboard
Presentation slides etc
When using the light mode of the website, the text of the page is kind of hard to see. It looks like this might be a problem because the site...
There is a bug in pair parser combinator that causes introduced tests to fail. The problem is that when the first parser successfully parses the input and the second doesn't,...
As for https://github.com/bodil/bodil.github.com/blob/master/content/parser-combinators/index.md It would be nice to have include ```rust fn and_then where P: Parser, F: Fn(A) -> NextP, { move |input| parser.parse(input) .and_then(|(next_input, result)| f(result).parse(next_input)) } ``` as...
Hi! In your Parser Combinators text you have what seems to be a typo: > To accommodate this pattern, we're going to use our pair combinator to write two other...
First encountered this issue on a physical mobile device, but it's also reproducible with Chrome's Dev Tools Mobile view. In a mobile resolution, the following happens to the elements placed...