[project @ 2001-11-29 13:47:09 by simonpj]
[ghc-hetmet.git] / ghc / lib / std / PrelSplit.lhs
1 \begin{code}
2 module PrelSplit( Splittable( split ) ) where
3
4 -- The Splittable class for the linear implicit parameters
5 -- Can't put it in PrelBase, because of the use of (,)
6
7 class Splittable t where
8   split :: t -> (t,t)
9 \end{code}