Returns an Option that resolves to a Some, which wraps the given value. Represents a value that does exist.
Option<T> some<T>(T value) => Some(value);