As a training exercise, I have written a polymorphic function to determine whether a given number is prime to either a single number or all of a list of numbers:
{-# LANGUAGE FlexibleInstances #-}
class PrimeTo a where
ispt :: Integer -> a -> Bool
instance PrimeTo (Integer) where
ispt n d = 0 /= (rem n d)
instance PrimeTo ([Integer]) where
ispt n [] = True
ispt n (x:xs) = (ispt n x) && (ispt n xs)
To get this to work, I had to use FlexibleInstances, and I'm happy with that, but curious.
Under strict Haskell 98, as I understand it, I would need to add a type descriptor, T, to the instance definitions:
class PrimeTo a where
ispt :: Integer -> a -> Bool
instance PrimeTo (T Integer) where
ispt n d = 0 /= (rem n d)
instance PrimeTo (T [Integer]) where
ispt n [] = True
ispt n (x:xs) = (ispt n x) && (ispt n xs)
but I haven't a clue what goes in place of "T", and I don't even know whether this is possible under Haskell 98.
So:
- Is this even possible under Haskell 98?
- If so, what would be used for T?