One of the new features of Scala 2.8 are context bounds. What is a context bound and where is it useful?
Of course I searched first (and found for example this) but I couldn't find any really clear and detailed information.
|
One of the new features of Scala 2.8 are context bounds. What is a context bound and where is it useful? Of course I searched first (and found for example this) but I couldn't find any really clear and detailed information. |
|||||||||
|
|
Did you find this article? It covers the new context bound feature, within the context of array improvements. Generally, a type parameter with a context bound is of the form Consider the method
In Scala 2.8 this is no longer possible, because runtime information is necessary to create the right representation of
As a shorthand form, a context bound can be used on the type parameter
|
||||
|
|
|
Robert's answer covers the techinal details of Context Bounds. I'll give you my interpretation of their meaning. In Scala a View Bound (
says that the parameter can be seen as an
which says that the parameter has an associated In terms of use, I don't think conventions are properly established (because context bounds are new). One suggestion is that their use is preferred when you need to transfer an implicit definition from one scope to another without needing to refer to it directly (this is certainly the case for the Another way of thinking about view bounds and context bounds is that the first transfers implicit conversions from the caller's scope. The second transfers implicit objects from the caller's scope. |
|||||||||||
|
|
(This is a parenthetical note. Read and understand the other answers first.) Context Bounds actually generalize View Bounds. So, given this code expressed with a View Bound:
This could also be expressed with a Context Bound, with the help of a type alias representing functions from type
A context bound must be used with a type constructor of kind There is a proposal to allow you to directly express partially applied types in Scala, without the use of the type alias inside a trait. You could then write:
|
|||||||
|
|
This is another parenthetical note. As Ben pointed out, a context bound represents a "has-a" constraint between a type parameter and a type class. Put another way, it represents a constraint that an implicit value of a particular type class exists. When utilizing a context bound, one often needs to surface that implicit value. For example, given the constraint
or
|
|||
|
|