Join Slack
Powered by
<@U7Y5BS2H0> the difference between Scala's Option...
# arrow
r
raulraja
01/24/2018, 4:23 PM
@rawtoast
the difference between Scala's Option and
arrow.core.Option
is that in Arrow
Option(null) == Some(null)
and in Scala
Option(null) == None
. In Arrow if you want the same behavior as in Scala as you pointed out you have to use
Option.fromNullable(?)
.
Open in Slack
Previous
Next