Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community.
At first look, it's not immediately obvious what this could be useful for. Heiko Seeberger posted a simple example of dependent method types here, which as can be seen in the comment there can easily be reproduced with type parameters on methods. So that wasn't a very compelling example. (I might be missing something obvious. Please correct me if so.)
What are some practical and useful examples of use cases for dependent method types where they are clearly advantageous over the alternatives?
What interesting things can we do with them that weren't possible/easy before?
What do they buy us over the existing type system features?
Also, are dependent method types analogous to or drawing inspiration from any features found in the type systems of other advanced typed languages such as Haskell, OCaml?
More or less any use of member (ie. nested) types can give rise to a need for dependent method types. In particular, I maintain that without dependent method types the classic cake pattern is closer to being an anti-pattern.
So what's the problem? Nested types in Scala are dependent on their enclosing instance. Consequently, in the absence of dependent method types, attempts to use them outside of that instance can be frustratingly difficult. This can turn designs which initially seem elegant and appealing into monstrosities which are nightmarishly rigid and difficult to refactor.
I'll illustrate that with an exercise I give during my Advanced Scala training course,
It's an example of the classic cake pattern: we have a family of abstractions which are gradually refined through a heirarchy (
ResourceManager
/Resource
are refined byFileManager
/File
which are in turn refined byNetworkFileManager
/RemoteFile
). It's a toy example, but the pattern is real: it's used throughout the Scala compiler and was used extensively in the Scala Eclipse plugin.Here's an example of the abstraction in use,
Note that the path dependency means that the compiler will guarantee that the
testHash
andtestDuplicates
methods onNetworkFileManager
can only be called with arguments which correspond to it, ie. it's ownRemoteFiles
, and nothing else.That's undeniably a desirable property, but suppose we wanted to move this test code to a different source file? With dependent method types it's trivially easy to redefine those methods outside the
ResourceManager
hierarchy,Note the uses of dependent method types here: the type of the second argument (
rm.Resource
) depends on the value of the first argument (rm
).It is possible to do this without dependent method types, but it's extremely awkward and the mechanism is quite unintuitive: I've been teaching this course for nearly two years now, and in that time, noone has come up with a working solution unprompted.
Try it for yourself ...
After a short while struggling with it you'll probably discover why I (or maybe it was David MacIver, we can't remember which of us coined the term) call this the Bakery of Doom.
Edit: consensus is that Bakery of Doom was David MacIver's coinage ...
For the bonus: Scala's form of dependent types in general (and dependent method types as a part of it) was inspired by the programming language Beta ... they arise naturally from Beta's consistent nesting semantics. I don't know of any other even faintly mainstream programming language which has dependent types in this form. Languages like Coq, Cayenne, Epigram and Agda have a different form of dependent typing which is in some ways more general, but which differs significantly by being part of type systems which, unlike Scala, don't have subtyping.