diff options
author | Ian Lynagh <igloo@earth.li> | 2007-07-02 11:47:09 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-07-02 11:47:09 +0000 |
commit | b98b590f7f62cd8f5c1653584ce37ebf5ac09ffd (patch) | |
tree | ff5eb8487a7c042c5bebdb1cb2e96ebfe46e94f9 /compiler/utils/Util.lhs | |
parent | 7fb6cab70c0ebf64f15f3cc140625a235000fda4 (diff) | |
download | haskell-b98b590f7f62cd8f5c1653584ce37ebf5ac09ffd.tar.gz |
Remove unused cfst (== const)
Diffstat (limited to 'compiler/utils/Util.lhs')
-rw-r--r-- | compiler/utils/Util.lhs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/compiler/utils/Util.lhs b/compiler/utils/Util.lhs index 2d80c45777..ed4a4b9ead 100644 --- a/compiler/utils/Util.lhs +++ b/compiler/utils/Util.lhs @@ -705,15 +705,6 @@ removeSpaces = reverse . dropWhile isSpace . reverse . dropWhile isSpace %* * %************************************************************************ -The following are curried versions of @fst@ and @snd@. - -\begin{code} -#if NOT_USED -cfst :: a -> b -> a -- stranal-sem only (Note) -cfst x y = x -#endif -\end{code} - The following provide us higher order functions that, when applied to a function, operate on pairs. |