From: Simon Marlow Date: Thu, 1 Jul 2010 12:53:33 +0000 (+0000) Subject: peekArray docs: remove mentions of "this version" and "previous version" X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=e70ccaa8e39155954759cc90eeae57d6bfdb5088 peekArray docs: remove mentions of "this version" and "previous version" --- diff --git a/Foreign/Marshal/Array.hs b/Foreign/Marshal/Array.hs index 8e013fe..8d8da7b 100644 --- a/Foreign/Marshal/Array.hs +++ b/Foreign/Marshal/Array.hs @@ -129,10 +129,8 @@ reallocArray0 ptr size = reallocArray ptr (size + 1) -- marshalling -- ----------- --- |Convert an array of given length into a Haskell list. This version --- traverses the array backwards using an accumulating parameter, --- which uses constant stack space. The previous version using mapM --- needed linear stack space. +-- |Convert an array of given length into a Haskell list. The implementation +-- is tail-recursive and so uses constant stack space. -- peekArray :: Storable a => Int -> Ptr a -> IO [a] peekArray size ptr | size <= 0 = return []