dtolnay / quote

Rust quasi-quoting
Apache License 2.0
1.32k stars 90 forks source link

Support arbitrary containers by IntoIterator blanket impl #230

Open lukaslihotzki opened 2 years ago

lukaslihotzki commented 2 years ago

Fixes #229

arrays, Vec, and BTreeSet and their references still work. Also, other custom containers that implement IntoIterator work with and without explicit reference.

lukaslihotzki commented 2 years ago

Converted to draft because of problems with RepInterp interaction.