Maybe what <@U33S3CR1A> is looking for is a new ty...
# arrow
s
Maybe what @rrader is looking for is a new type that can model `Undefined`/`Defined` (instead of
Optional
or
Nullable
).
Copy code
val columnValue : Defined<Option<String>>
or
Copy code
val columnValue: Defined<String?>
Overloading the
Optional
(
Option
) or
Nullable
with ‘(un)defined’ is not a good idea, in my opinion. Don’t mix them 😉
r
Yes, you got it