representations.
The question that this brings up is does it require a
change from the Haskell language standard? The trickle
down implications from String into Char and
potentially List might have too high an impact for
this approach.
Personally I think it's something that should be
consider
--- Jérémy_Bobbio <[EMAIL PROTECTED]> wrote:
> memcpy is available in Foreign.Marshal.Utils:
>
> copyBytes :: Ptr a -> Ptr a -> Int -> IO ()
>
> Copies the given number of bytes from the
> second area (source)
> into the first (destination);the copied areas
> may not overlap
>
> H