I have seen much talk about predicate dispatch in Clojure lately and wonder if there is something to this thing. In other words, what is predicate dispatch and how does it differ from generic functions, OOP polymorphism, and patterns? Thank you
|
In traditional object-oriented programming, polymorphism means that you can have multiple implementations of a method, and the exact implementation that gets called is determined by the type of the object on which you called the method. This is type dispatch. Predicate dispatch extends this, so that the implementation of a method that gets called can be determined by anything, including another arbitrary function. Clojure provides this feature in multimethods. In the Clojure form The dispatch function could be Generic function is a term from other Lisps. Common Lisp, for example, provides generic functions which can dispatch on type and a restricted set of other functions. |
|||||||||||||||
|
|
Predicate dispatch subsumes generic functions, OOP polymorphism, pattern matching, and more. A good overview here, http://www.cs.washington.edu/homes/mernst/pubs/dispatching-ecoop98-abstract.html |
|||
|
|
|
Predicate dispatch is a way of providing different responses to a function call, based on the number, "shape" and values of the arguments to the function. Clojure functions already dispatch to different bodies of code, depending on the number of arguments passed to the function:
Clojure multimethods add to this the ability to dispatch to different methods—perhaps defined in different namespaces—based on the return value of a dispatch function that examines the arguments (which can include their number, class, and value) and identifies which method to all. As noted in the footnotes to Stuart Sierra's answer, the creator of the multimethod gets to define the dispatch function, and it can't ordinarily be modified. Also, the programmer has to hand-design an ultra-complex dispatch function for a function that executes one thing for an integer of value 0, and another for a positive integer; or one thing for a list of one or more items, and another for an empty list. Predicate dispatch would (perhaps) provide a syntax that generated this complex dispatch function itself. For example, a factorial function could be defined this way
The former code responds to a call to
the latter code to a call with a single argument of any other value. This would (behind the scenes) define a multimethod with a dispatch function that distinguishes the zero from other values. But later I could specify that I want a factorial for a map (perhaps) by coding
and the code could (in theory) intercept calls passing a map to fact, delegating other calls to the original dispatch function...all behind the scenes. |
|||||
|