Safely wraps a value that might be null or undefined in an Option. Creates Some if the value is defined, None otherwise.
The type of the value
The value to wrap (might be null/undefined)
Some(value) if value is defined, None otherwise
Safely wraps a value that might be null or undefined in an Option. Creates Some if the value is defined, None otherwise.