CC coders who've learned to love the
2024-12-27 02:10:01.981908+01 by Dan Lyke 0 comments
C/C++ coders who've learned to love the Rust language: what was your path there? I'm finding that a lot of the ways I'd like to express, for instance, a parser aren't super convenient to do so, and I'm trying to figure out how to think in the sort of data structures that Rust encourages, while working in idioms that are going to be relatively performant (like I *think* that Char iterators to track the parsed location, rather than using indices, is a good idea unless I want t odo my own UTF-8).