Explore >> Select a destination


You are here

blog.japaric.io
| | mcyoung.xyz
9.0 parsecs away

Travel
| |
| | blog.m-ou.se
12.0 parsecs away

Travel
| | The fmt::Arguments type is one of my favorite types in the Rust standard library. It's not particularly amazing, but it is a great building block that is indirectly used in nearly every Rust program. This type, together with the format_args!() macro, is the power behind print!(), format!(), log::info!() and many more text formatting macros, both from the standard library and community crates. In this blog post, we learn how it works, how it is implemented today, and how that might change in the future.
| | kuterdinel.com
12.2 parsecs away

Travel
| | I demonstrate how you can write a simple JIT (Just In Time) compiler for x86 in about 1000 lines of C code.
| | theincredibleholk.org
51.9 parsecs away

Travel
| As I've written about before, one of the major features we're working on adding to Rust is to allow async functions in traits. Today we have support in nightly ...