PackedString

The plain source file for module PackedString is not available.
module PackedString where
import qualified Prelude as P
import Prelude hiding (null)

newtype PackedString = PS String deriving (Eq,Ord)

instance Show PackedString where
  showsPrec n (PS s) r = s++r

packString = PS
unpackPS (PS s) = s

null (PS s) = P.null s


Index

(HTML for this module was generated on May 15, 2003. About the conversion tool.)