@@ -25,7 +25,7 @@ import Data.Functor.Contravariant.Divisible (Divisible (..), Decidable
25
25
import Data.Functor.Contravariant (Contravariant (.. ), Op (.. ), Predicate (.. ), Comparison (.. ), Equivalence (.. ), defaultComparison , defaultEquivalence , (>$<) )
26
26
import Data.Functor.Foldable (ListF (.. ))
27
27
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 )
29
29
import Data.List.NonEmpty (NonEmpty (.. ), (<|) )
30
30
import qualified Data.List.NonEmpty as NE
31
31
import Data.Maybe as Maybe (catMaybes , fromJust , isNothing )
@@ -36,7 +36,7 @@ import Data.Semigroup.Traversable (Traversable1)
36
36
import Data.Set (Set )
37
37
import qualified Data.Set as Set
38
38
import Data.Set.Unicode ((∪) )
39
- import Data.Smash (Smash (.. ), smash , fromSmash )
39
+ import Data.Smash (Smash (.. ), smash , fromSmash , unfoldr )
40
40
import Data.These (These (.. ), these , partitionEithersNE , partitionThese )
41
41
import Data.Traversable (mapAccumL , mapAccumR )
42
42
import Data.Tree (Forest , Tree (.. ), unfoldTree )
@@ -318,12 +318,12 @@ fixedPoint' (Equivalence (≡)) f a = fixedPoint' (Equivalence (≡))
318
318
-- inspired by `Agda.Utils.Either.groupByEither`
319
319
-- >>> groupByLR [Left LT, Left EQ, Right (), Right (), Right (), Left GT]
320
320
-- [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
323
323
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))
327
327
328
328
-- Based on `replicateTree` from http://hackage.haskell.org/package/type-indexed-queues
329
329
-- 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
870
870
-- Slide a two-element-wide window over a list, one element at a time,
871
871
-- generating a list of pairs
872
872
windowed' ∷ ∀ t a . (Foldable t ) ⇒ t a → [(a , a )]
873
- windowed' = List. unfoldr pairs . toList
873
+ windowed' = unfoldr pairs . toList
874
874
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 )
879
879
880
880
-- from https://github.com/haskell/containers/issues/346
881
881
catMaybes ∷ (Ord a ) ⇒ Set (Maybe a ) → Set a
0 commit comments