[project @ 2002-03-25 14:41:05 by simonpj]
authorsimonpj <unknown>
Mon, 25 Mar 2002 14:41:05 +0000 (14:41 +0000)
committersimonpj <unknown>
Mon, 25 Mar 2002 14:41:05 +0000 (14:41 +0000)
Comments

ghc/compiler/utils/Util.lhs

index 8c86eea..93e759b 100644 (file)
@@ -257,6 +257,7 @@ atLength atLenPred atEndPred ls n
 
 -- special cases.
 lengthExceeds :: [a] -> Int -> Bool
+-- (lengthExceeds xs n) = (length xs > n)
 lengthExceeds = atLength (not.null) (const False)
 
 lengthAtLeast :: [a] -> Int -> Bool