Currently we put everything into an option and have to unwrap, but we could also allow the user to specify that they expect the result not to contain any NULL values.
Instead of a Optional[T] we'd just return T and fail at runtime if they're still NULL values.
What about nested types like lists that could in turn contain NULL values?
Currently we put everything into an option and have to unwrap, but we could also allow the user to specify that they expect the result not to contain any
NULLvalues.Instead of a
Optional[T]we'd just returnTand fail at runtime if they're stillNULLvalues.What about nested types like lists that could in turn contain
NULLvalues?