Develop Secure Application with Rust

Rust is a multi-paradigm language of which one of the objectives is to challenge the conflict between high-level ergonomics and fine-grained memory management. Among the abundant constructions and features it proposes, some can enable the introduction of … Read more

Similar

Closures in Rust

Rust allows us to do functional programming. One important thing in FP is being also to pass functions as parameters and also return functio... (more…)

Read more »

Grids in Rust, part 2: const generics

In part one, we defined a Grid trait and implemented it using 1D and 2D vectors. Benchmarks revealed that a 1D vector was a better choice than a nested 2D vector. In this post, we'll write a new implementation that uses arrays instead of Vec. This should ... (more…)

Read more »