Class system extension proposal
From HaskellWiki
(fixed explicit import/export example syntax) |
m (Changed category to "Proposals") |
||
| Line 1: | Line 1: | ||
| - | [[Category: | + | [[Category:Proposals]] |
==Allowing superclass methods to be overridden in derived classes== | ==Allowing superclass methods to be overridden in derived classes== | ||
===Motivation=== | ===Motivation=== | ||
Revision as of 19:06, 9 January 2007
Contents |
1 Allowing superclass methods to be overridden in derived classes
1.1 Motivation
The current class system in Haskell is based on the idea that you can often provide default methods for a class at the same time as defining the class, by using other methods of the class or its ancestors. However consider the following hierarchy, adapted from Functor hierarchy proposal and The Other Prelude:
class Functor m where fmap :: (a -> b) -> m a -> m b class Functor m => Applicative m where return :: a -> m a apply :: m (a -> b) -> m a -> m b (>>) :: m a -> m b -> m b ma >> mb = (fmap (const id) ma) `apply` mb class Applicative m => Monad m where (>>=) :: m a -> (a -> m b) -> m b
fmap f ma = ma >>= (\a -> return (f a)) apply mf ma = mf >>= \f -> ma >>= \a -> return (f a) ma >> mb = ma >>= \_ -> mb
In other words, we'd like to be able to write:
class Applicative m => Monad m where (>>=) :: m a -> (a -> m b) -> m b fmap f ma = ma >>= (\a -> return (f a)) apply mf ma = mf >>= \f -> ma >>= \a -> return (f a) ma >> mb = ma >>= \_ -> mb
instance Monad T where ma >>= a_mb = ... -- some definition return a = ... -- some definition
- The idea of making a subclass ofMonadwas only discovered after many people had already usedApplicativein their programs. Therefore many existing programs already contain instance declarations forMonadas outlined above, so we would prefer not to have to change them just because the hierarchy has been refined to add extra functionality these existing programs don't use. This also applies to other hierachies in wide use at the moment, where changes have been proposed eg theMonadhierarchy.Num
- The implementation of in terms of(>>)for(>>=)is much simpler than the default implementation provided byMonad.Applicative
- The example shows that sometimes the default implementation of a method depends on which subclass we are using, and so acts as a counterexample to the current assumption that default implementations can be provided in the class where the method is introduced.
1.2 Concrete proposal
- Class and instance declarations would allow method implementations to be given for any methods in the class or any ancestor class.
- Whenever an instance declaration is visible there would always be a full set of instance declarations for all ancestor classes, by supplementing the set of explicitly given instance declarations that are visible in a module by automatically generated implicit instance declarations.
- The most specific method implementation would always be chosen (ie prefer an explicit instance method over a class method and prefer a subclass method to a superclass method)
- Modules would only export explicit instance declarations
1.3 Clarifications
- Separate compilation is still possible because all that's happening in the proposal is that the set of explicit instance declarations in scope in the module would be supplemented by a set of compiler-generated implicit instance declarations which are only visible in the module being compiled.
1.4 Implications
The most important implication of this proposal would be that the resolution of an overloaded method would depend on the instances in scope in the module where the method is called. Therefore overloading would need to be resolved before modules are conceptually merged together (especially important when considering whole program optimization), and in particular overloading of the body of an inlined function would need to be resolved using the module where the function was defined not the module where it is inlined.
2 Explicit import/export of instances
This is needed so that large programs can be built without fear of colliding instance declarations between different packages. A possible syntax could be:
module M -- exported instances ( instance Monad T , instance Functor (F a) hiding (Functor (F Int), Functor (F Char)) , F(..) ) where import Foo (instance M (F a) hiding M (F String)) data T a data F a b
where the context is elided because this isn't used in instance selection (at the moment).
