The context-bound tag has no wiki summary.
0
votes
1answer
29 views
NPE in spray-json because of recursive implicits (context bound issue?)
Perhaps I discovered a bug in spray-json. I get Null Pointer Exception when I'm trying to get json of an object that has field of type of itself. Example is:
case class TestItem(subitems: ...
0
votes
2answers
56 views
solving multiple inheritance (for precooked classes)
What I need: a class with two parents, which are ContextBoundObject and another class.
Why: I need to access the ContextBoundOject to log the method calls.
Composition works? As of now, no (types are ...
2
votes
1answer
98 views
Accessing type constructor parameter of context bounds with higher kinded types
Is it possible to access the type constructor parameter of a higher-kinded type in a context bound? I am looking to define a trait that takes a higher-kinded type, and has a method that returns an ...
0
votes
1answer
98 views
Scala: hierarchy of typeclasses and implicit resolution
Suppose I'm trying to represent, say, the domain of boolean logic (ignoring reduction for now). So I'll have in my store instances of Bools, or Ands and Ors or Nots etc. However, whilst I'll have ...
3
votes
2answers
639 views
Situations when Manifest not available
def bar[T: Manifest](a: Array[T]) = Array.ofDim[T](3)
class Foo
bar(Array(new Foo)) //Array[Foo] = Array(null, null, null)
Manifests seem to exist implicitly for arbitrary types, as shown above.
...
3
votes
1answer
198 views
Scala: How to get context bound List[T] conversion working here?
This is my first question here so hope I provide enough detail. Feel free to ask for clarification.
Taking the following into consideration, which works:
implicit def optionBsonReader[T, U](implicit ...
3
votes
2answers
2k views
Transparent proxy to original type
I have an run time object of type {System.Runtime.Remoting.Proxies.__TransparentProxy} which is created from an instance of class which is inherited from ContextBoundObject. This class raise an event ...
8
votes
1answer
177 views
What was the reason to restrict on combining implicit parameters and view/context bounds?
One of the recent commits to Scala master removes restriction on combining context/view bounds with implicit parameters. That's a great improvement that reduces amount of boilerplate, but what was the ...
1
vote
1answer
244 views
Chain of events / Proxy to original object
I have a class which is inherited from context bound object. Class has attribute on some properties. When some property is changed, PostProcess(IMessage msg, IMessage msgReturn) raise an event and ...
6
votes
2answers
810 views
Context bounds shortcut with higher kinded-types
Is it possible to use the context bounds syntax shortcut with higher kinded-types?
trait One { def test[ W : ClassManifest ] : Unit } // first-order ok
trait Two { def test[ W[ _ ] : ClassManifest ] ...
13
votes
3answers
1k views
How do I get an instance of the type class associated with a context bound?
Note: I'm posing this question to answer it myself, but other answers are welcome.
Consider the following simple method:
def add[T](x: T, y: T)(implicit num: Numeric[T]) = num.plus(x,y)
I can ...
5
votes
2answers
305 views
“:” in type parameter
In scala-arm project, I see code like this:
def managed[A : Resource : Manifest](opener : => A) : ManagedResource[A] = new DefaultManagedResource(opener)
Can someone explain the meaning of [A : ...
48
votes
4answers
11k views
What is a “context bound” in Scala?
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 ...