aboutsummaryrefslogtreecommitdiff
path: root/server/src/Util/List.hs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Util/List.hs')
-rw-r--r--server/src/Util/List.hs13
1 files changed, 0 insertions, 13 deletions
diff --git a/server/src/Util/List.hs b/server/src/Util/List.hs
deleted file mode 100644
index 4e22ba8..0000000
--- a/server/src/Util/List.hs
+++ /dev/null
@@ -1,13 +0,0 @@
-module Util.List
- ( groupBy
- ) where
-
-import Control.Arrow ((&&&))
-import Data.Function (on)
-import qualified Data.List as L
-
-groupBy :: forall a b. (Ord b) => (a -> b) -> [a] -> [(b, [a])]
-groupBy f =
- map (f . head &&& id)
- . L.groupBy ((==) `on` f)
- . L.sortBy (compare `on` f)