/usr/lib/hugs/oldlib/PackedString.lhs is in hugs 98.200609.21-5.4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | %
% (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
%
\section{Packed strings}
This sits on top of the sequencing/arrays world, notably @ByteArray#@s.
Glorious hacking (all the hard work) by Bryan O'Sullivan.
\begin{code}
module PackedString
{-# DEPRECATED "This module has moved to Data.PackedString" #-}
( module Data.PackedString ) where
import Data.PackedString
\end{code}
|