Re: Unicode in GHC: need some advice on building

2005-01-11 Thread Shawn Garbett
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

Re: major missing piece to arrays?

2004-07-16 Thread Shawn Garbett
--- 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