Scala's Option class has an orNull method, whose signature is shown below.
orNull [A1 >: A](implicit ev : <:<[Null, A1]) : A1
I'm bewildered by the implicit thing. Would somebody please explain how it can be used, ideally with an example?
|
Scala's Option class has an
I'm bewildered by the implicit thing. Would somebody please explain how it can be used, ideally with an example?
| ||||
|
feedback
|
To explain the implicit thing: orNull is a way of getting back from the Some|None idiom to Java's value|null idiom (which is, of course, bad). Now only AnyRef values (instances of classes) can accept a null value. So what we would have liked is
I think the use of A1 is not strictly required here and is because orNull uses getOrElse (where the default given can be a super type of A)
| |||||||||
feedback
|
|
According to this, Implicit parameter checks, if the boxed value is nullable. Good usage example can be found right in the comments to
| |||||||||||
feedback
|
|
Remember that in Scala primitive types and reference types are unified - but only reference types are nullable. The implicit simply allows the compiler to confirm that A1 is a reference type. | |||||
feedback
|
|
To understand why it is useful, IttayD provided a nice explanation:
In summary, type constraints are useful when you want have methods (eg This is another "feature" that is not built into the language but comes for free thanks to implicit parameters and variance annotations of type parameters. To understand this, look at the definition of
For
the compiler looks for an implicit value of type However, for
we are lucky. Now, the compiler tries to find an As mentioned, the most intuitive way to think about type constraints is reading it like a type bound (i.e. reading it as Null <: Int). By the way, here is another related answer. | |||
|
feedback
|
Null <:< A1, which makes it much more intuitive. Scaladoc's though, gets the type signature from the compiler, so these syntactic niceties are long gone by them. I'm talking to one of scaladoc committers about it, though. Let's see if this get improved on. – Daniel C. Sobral Dec 17 '10 at 10:49