Tag:from-scratch
All the articles with the tag "from-scratch".
Adding Null to Rust | Implementing Option From Scratch
Posted on:December 23, 2023 at 05:57 PMExplore the depths of Rust’s type system as we add null handling capabilities by implementing the ‘Option’ enum from scratch. Discover how to elegantly handle the absence of a value and safely unwrap the ‘Option’ enum in Rust. This article provides a step-by-step guide to understanding and creating your own version of the ‘Option’ enum, complete with code examples and explanations.