Skip to content

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 can be either:

  • Some(value): Contains a value of type T
  • None: Contains no value

Version

Option V1.2