mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
e22eb1afea
## Description Following on from #4572, this removes more dead code as identified by Weeder. Comments and thoughts similarly welcome! PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4587 GitOrigin-RevId: 73aa6a5a2833ee41d29b71fcd0a72ed19822ca73
57 lines
1.7 KiB
Haskell
57 lines
1.7 KiB
Haskell
module Data.List.Extended
|
|
( duplicates,
|
|
uniques,
|
|
getDifference,
|
|
getDifferenceOn,
|
|
getOverlapWith,
|
|
longestCommonPrefix,
|
|
appendToNonEmpty,
|
|
module L,
|
|
)
|
|
where
|
|
|
|
import Data.Function (on)
|
|
import Data.HashMap.Strict.Extended qualified as Map
|
|
import Data.HashSet qualified as Set
|
|
import Data.Hashable (Hashable)
|
|
import Data.List qualified as L
|
|
import Data.List.NonEmpty qualified as NE
|
|
import Data.Set qualified as S
|
|
import Prelude
|
|
|
|
duplicates :: (Eq a, Hashable a) => [a] -> Set.HashSet a
|
|
duplicates =
|
|
Set.fromList . Map.keys . Map.filter (> 1) . Map.fromListWith (+) . map (,1 :: Int)
|
|
|
|
uniques :: (Ord a) => [a] -> [a]
|
|
uniques = S.toList . S.fromList
|
|
|
|
getDifference :: (Eq a, Hashable a) => [a] -> [a] -> Set.HashSet a
|
|
getDifference = Set.difference `on` Set.fromList
|
|
|
|
getDifferenceOn :: (Eq k, Hashable k) => (v -> k) -> [v] -> [v] -> [v]
|
|
getDifferenceOn f l = Map.elems . Map.differenceOn f l
|
|
|
|
getOverlapWith :: (Eq k, Hashable k) => (v -> k) -> [v] -> [v] -> [(v, v)]
|
|
getOverlapWith getKey left right =
|
|
Map.elems $ Map.intersectionWith (,) (mkMap left) (mkMap right)
|
|
where
|
|
mkMap = Map.fromList . map (\v -> (getKey v, v))
|
|
|
|
-- | Returns the longest prefix common to all given lists. Returns an empty list on an empty list.
|
|
--
|
|
-- >>> longestCommonPrefix ["abcd", "abce", "abgh"]
|
|
-- "ab"
|
|
--
|
|
-- >>> longestCommonPrefix []
|
|
-- []
|
|
longestCommonPrefix :: Eq a => [[a]] -> [a]
|
|
longestCommonPrefix [] = []
|
|
longestCommonPrefix (x : xs) = foldr prefix x xs
|
|
where
|
|
prefix l1 l2 = map fst $ takeWhile (uncurry (==)) $ zip l1 l2
|
|
|
|
appendToNonEmpty :: NE.NonEmpty a -> [a] -> NE.NonEmpty a
|
|
appendToNonEmpty (neHead NE.:| neList) list =
|
|
neHead NE.:| (neList <> list)
|