# Functions

FromPtr returns a Maybe that has a defined value of *ptr if ptr is non-nil, or no value if ptr is nil.
None returns a Maybe with no value.
Some returns a Maybe that has a defined value.

# Structs

Maybe is a simple implementation of an optional value type.