hw-prim-0.0.3.8: src/HaskellWorks/Data/Char/IsChar.hs
module HaskellWorks.Data.Char.IsChar
( IsChar(..)
) where
import qualified Data.ByteString.Internal as BI
import Data.Word
class IsChar c where
toChar :: c -> Char
instance IsChar Word8 where
toChar = BI.w2c
{-# INLINE toChar #-}
instance IsChar Char where
toChar = id
{-# INLINE toChar #-}