Fallible Iterator Adapters in Rust

A great aspect of the Rust stdlib is that many common operations are provided
with a shared idiom. Rather than say having to remember how to write a
correct sort function by hand, the stdlib provides a fast one for you. Read more

Similar

Notes on Writing Parsers in Rust

I've recently been writing a bit of parsing code in Rust, and I've been jumping back and forth between a few different parsing libraries - they all have different advantages and disadvantages, so I wanted to write up some notes here to help folks who are ... (more…)

Read more »