From: simonpj@microsoft.com Date: Tue, 8 Aug 2006 22:48:08 +0000 (+0000) Subject: Group exports so that all length functions are together; no semantic change X-Git-Tag: Before_FC_branch_merge~258 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=931515abf853065116e4b984b9b0ff2f2ec851b1;p=ghc-hetmet.git Group exports so that all length functions are together; no semantic change --- diff --git a/compiler/utils/Util.lhs b/compiler/utils/Util.lhs index e692ff1..279a108 100644 --- a/compiler/utils/Util.lhs +++ b/compiler/utils/Util.lhs @@ -12,7 +12,10 @@ module Util ( mapFst, mapSnd, mapAndUnzip, mapAndUnzip3, nOfThem, filterOut, - lengthExceeds, lengthIs, lengthAtLeast, listLengthCmp, atLength, + + lengthExceeds, lengthIs, lengthAtLeast, + listLengthCmp, atLength, equalLength, compareLength, + isSingleton, only, singleton, notNull, snocView, @@ -34,7 +37,7 @@ module Util ( takeList, dropList, splitAtList, split, -- comparisons - isEqual, eqListBy, equalLength, compareLength, + isEqual, eqListBy, thenCmp, cmpList, prefixMatch, suffixMatch, maybePrefixMatch, removeSpaces,