Skip to content

Commit d1357b6

Browse files
committed
improve type of groupByLR to use NE, use Smash.unfoldr, bump lts
1 parent 5c26539 commit d1357b6

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/Common.hs

+12-12
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import Data.Functor.Contravariant.Divisible (Divisible (..), Decidable
2525
import Data.Functor.Contravariant (Contravariant (..), Op (..), Predicate (..), Comparison (..), Equivalence (..), defaultComparison, defaultEquivalence, (>$<))
2626
import Data.Functor.Foldable (ListF (..))
2727
import Data.Function (on, fix, (&))
28-
import Data.List as List (delete, deleteBy, deleteFirstsBy, elemIndex, elemIndices, filter, find, findIndex, findIndices, genericDrop, genericIndex, genericLength, genericReplicate, genericTake, intercalate, intersectBy, sortBy, tails, transpose, unfoldr)
28+
import Data.List as List (delete, deleteBy, deleteFirstsBy, elemIndex, elemIndices, filter, find, findIndex, findIndices, genericDrop, genericIndex, genericLength, genericReplicate, genericTake, intercalate, intersectBy, sortBy, tails, transpose)
2929
import Data.List.NonEmpty (NonEmpty (..), (<|))
3030
import qualified Data.List.NonEmpty as NE
3131
import Data.Maybe as Maybe (catMaybes, fromJust, isNothing)
@@ -36,7 +36,7 @@ import Data.Semigroup.Traversable (Traversable1)
3636
import Data.Set (Set)
3737
import qualified Data.Set as Set
3838
import Data.Set.Unicode ((∪))
39-
import Data.Smash (Smash (..), smash, fromSmash)
39+
import Data.Smash (Smash (..), smash, fromSmash, unfoldr)
4040
import Data.These (These (..), these, partitionEithersNE, partitionThese)
4141
import Data.Traversable (mapAccumL, mapAccumR)
4242
import Data.Tree (Forest, Tree (..), unfoldTree)
@@ -318,12 +318,12 @@ fixedPoint' (Equivalence (≡)) f a = fixedPoint' (Equivalence (≡))
318318
-- inspired by `Agda.Utils.Either.groupByEither`
319319
-- >>> groupByLR [Left LT, Left EQ, Right (), Right (), Right (), Left GT]
320320
-- [Left [LT,EQ],Right [(),(),()],Left [GT]]
321-
groupByLR a b . [Either a b] [Either [a] [b]]
322-
groupByLR = List.unfoldr c
321+
groupByLR a b . [Either a b] [Either (NE.NonEmpty a) (NE.NonEmpty b)]
322+
groupByLR = unfoldr c
323323
where
324-
c [Either a b] Maybe (Either [a] [b], [Either a b])
325-
c = list Nothing (Just either (\a first (Left . ((:) a . concatMap (either pure (const [])))) . span isLeft)
326-
(\b first (Right . ((:) b . concatMap (either (const []) pure))) . span isRight))
324+
c [Either a b] Smash (Either (NE.NonEmpty a) (NE.NonEmpty b)) [Either a b]
325+
c = list Nada (uncurry Smash either (\a first (Left . ((NE.:|) a . concatMap (either pure (const [])))) . span isLeft)
326+
(\b first (Right . ((NE.:|) b . concatMap (either (const []) pure))) . span isRight))
327327

328328
-- Based on `replicateTree` from http://hackage.haskell.org/package/type-indexed-queues
329329
-- TODO still can clean this up a bit, but left this way for now on purpose
@@ -870,12 +870,12 @@ windowed n = getZipList . traverse ZipList . genericTake n . tails . toList
870870
-- Slide a two-element-wide window over a list, one element at a time,
871871
-- generating a list of pairs
872872
windowed' t a . (Foldable t) t a [(a, a)]
873-
windowed' = List.unfoldr pairs . toList
873+
windowed' = unfoldr pairs . toList
874874
where
875-
pairs [a] Maybe ((a, a), [a])
876-
pairs [] = Nothing
877-
pairs [_] = Nothing
878-
pairs (a₁ : a₂ : t) = Just ((a₁, a₂), a₂ : t)
875+
pairs [a] Smash (a, a) [a]
876+
pairs [] = Nada
877+
pairs [_] = Nada
878+
pairs (a₁ : a₂ : as) = Smash (a₁, a₂) (a₂ : as)
879879

880880
-- from https://github.com/haskell/containers/issues/346
881881
catMaybes (Ord a) Set (Maybe a) Set a

stack.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
flags: {}
22
extra-package-dbs: []
33
packages:
4-
resolver: lts-17.7
4+
resolver: lts-17.9
55
extra-deps:
66
- algebra-4.3.1@sha256:38b3e2e7f1058b8f51dcb97c906d4e9871876fd82029a316970ee613fcca130f,3952
77
- containers-unicode-symbols-0.3.1.1@sha256:2f8e14cf2ec9c5f65614d3a3113b047c623729993dd12365b737b9d93ea30da2,1790

0 commit comments

Comments
 (0)