Rust by Example

[Rust][rust] is a modern systems programming language focusing on safety, speed,and concurrency. It accomplishes these goals by being memory safe without using garbage collection.

Similar

Monads and GATs in Nightly Rust

I saw a recent Reddit post on the advances in Generic Associated Types (GATs) in Rust, which allows for the definition of a Monad trait. In this post, I'm going to take it one step further: a monad transformer trait in Rust! (more…)

Read more »