Overview
Getting Started
This module implements the Option type pattern, similar to Rust's Option
It provides a way to handle nullable values in a type-safe manner.
Option
- Some(value): Contains a value of type T
- None: Contains no value
This module implements the Option type pattern, similar to Rust's Option
It provides a way to handle nullable values in a type-safe manner.
Option