DanielKeep.github.io
DanielKeep.github.io copied to clipboard
I cannot get to run the tuorial with rust 1.62.1. Would it be possible to provide a updated version of the code? I have Syntax issues mem: [u64, .. 2]...
Hi, first thanks a lot for your helpful doc: https://danielkeep.github.io/practical-intro-to-macros.html ! I got build error: (using rustc 1.19.0-nightly (03abb1bd7 2017-06-13)) ``` error: `$inits:expr` may be followed by `...`, which is...
In [section 4 of your excellent rust macro overview](https://danielkeep.github.io/practical-intro-to-macros.html#indexing-and-shuffling), you say about your hand-written Fibonacci sequence iterator > If we take this code and run it, we get: > ```...
This is concerning the cheat sheet here: https://danielkeep.github.io/itercheat_baked.html The all_equal link does not resolve: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.all_equal The correct link seems to be: https://docs.rs/itertools/*/itertools/trait.Itertools.html#method.all_equal
Hello, I love using https://danielkeep.github.io/itercheat_baked.html as a reference, but at this point it's pretty dated. It's still useful but as time goes on I worry that I may overlook options...
Cheat sheet says `s:&mut S`; it hsould be `s:S`.
I just wanted to say that I've recently read and loved [A Practical Intro to Macros](https://danielkeep.github.io/practical-intro-to-macros.html) and it finally helped me get a handle on the macro system, somewhat. Thanks...