Generic singletons through dependent method types
Ever tried to write a generic singleton? It’s an oxymoron of a sort. But sometimes my brain dreams up funny concepts to solve the problem at hand. Sadly I cannot remember what I wanted to use them for. Anyway I think I just made all the methods generic and solved it this way. But this doesn’t really express the notion of one entity that’s agnostic to type of the parameters. With generic methods you get a bunch of disconnected units - at least that’s the picture in my head.
General
So we’ve established that generic singletons are just a silly idea, now let’s try to implement it - you know “Challenge accepted!” style.
|
|
Luckily this naive approach does not compile. Try it.
|
|
But this is not a singleton anymore as there is a new instance created everytime.
|
|
Didn’t bother with thread safety. And dragging around Manifest just for caching is a bit of a pain, luckily elevated by context bounds.
Type specific
That worked for classes that don’t bother about the generic types…what if we want specific behavior per type? Type classes. A trait for general interface and objects for specific types. Magic lies in making these objects implicit and having a method that gives you the right one!
|
|
Specific functionality
Now let’s add a little twist.
|
|
and it doesn’t compile for a reason. Static type of returned from Singleton[Int] is Singleton[Int]. And there is no method g defined in trait Singleton. But we are sure it exists. We could call IntSingleton directly but this makes whole Singleton abstraction worthless. Luckily for us scala 2.10 has a feature called method dependent types. To my best understanding this means support for return types that depend on the type of parameters. And here we want the type to reflect which instance is being returned. Nothing suits the job better as singleton types. Singleton type is a type that has only one value. So an object A will be of type A.type. This type is worthless for inference but great when you’re doing the type tags. We just need a little fix
|
|
This method will return the correct instance along with it’s type while giving you a nice abstraction of type constructor.
Last modified on 2013-01-27
Previous Monadic IO with ScalaZNext Chaining implicit conversion in scala