Last active
July 9, 2020 06:40
-
-
Save chowells79/9e77d6e7df08565ccdd4c9bcc7c37dde to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE RankNTypes #-} | |
module ReflectiveIntersperse (intersperse, intersperse') where | |
import Data.Reflection (Reifies, reflect, reify) | |
import Data.Foldable (Foldable(..)) | |
data Between a s = Empty | Has a | |
instance (Reifies s a, Semigroup a) => Semigroup (Between a s) where | |
Empty <> x = x | |
x <> Empty = x | |
ps@(Has x) <> Has y = Has (x <> reflect ps <> y) | |
instance (Reifies s a, Semigroup a) => Monoid (Between a s) where | |
mempty = Empty | |
unBetween :: Monoid a => Between a s -> proxy s -> a | |
unBetween Empty _ = mempty | |
unBetween (Has x) _ = x | |
baseIntersperse :: (Monoid a, Foldable f) => | |
(forall m. Monoid m => (a -> m) -> f a -> m) -> | |
a -> f a -> a | |
baseIntersperse f x xs = reify x (unBetween $ f Has xs) | |
intersperse :: (Monoid a, Foldable f) => a -> f a -> a | |
intersperse = baseIntersperse foldMap | |
intersperse' :: (Monoid a, Foldable f) => a -> f a -> a | |
intersperse' = baseIntersperse foldMap' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment