module Juvix.Builtin.V1.Maybe;

--- Represents an optional value that may or may not be present. Provides a way
--- to handle null or missing values in a type-safe manner.
builtin maybe
type Maybe A :=
  | nothing
  | just A;
Last modified on 2024-07-11 16:35 UTC