X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=compiler%2Futils%2FBag.lhs;h=d315c42074172c3c4cd2c8b77b9dc5d90049d23e;hb=046ee54f048ddd721dcee41916d6a6f68db3b15b;hp=ea85a8c134feb50277ef6bf435278dc04848b295;hpb=5199290f732017432869c9939934871e62c50b74;p=ghc-hetmet.git diff --git a/compiler/utils/Bag.lhs b/compiler/utils/Bag.lhs index ea85a8c..d315c42 100644 --- a/compiler/utils/Bag.lhs +++ b/compiler/utils/Bag.lhs @@ -1,7 +1,9 @@ % +% (c) The University of Glasgow 2006 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998 % -\section[Bags]{@Bag@: an unordered collection with duplicates} + +Bag: an unordered collection with duplicates \begin{code} module Bag ( @@ -20,7 +22,8 @@ module Bag ( import Outputable import Util ( isSingleton ) -import List ( partition ) + +import Data.List ( partition ) \end{code}