idris2-profunctors/Data/Profunctor/Traversing.idr

225 lines
6.9 KiB
Idris
Raw Normal View History

2023-03-06 14:50:09 -05:00
module Data.Profunctor.Traversing
import Control.Applicative.Const
2023-03-06 14:50:09 -05:00
import Data.Morphisms
import Data.Tensor
2023-03-06 19:24:07 -05:00
import Data.Profunctor
2023-03-06 14:50:09 -05:00
%default total
2023-03-14 12:52:45 -04:00
------------------------------------------------------------------------------
-- Default implementation machinery
------------------------------------------------------------------------------
[FoldablePair] Foldable (Pair c) where
foldr op init (_, x) = x `op` init
foldl op init (_, x) = init `op` x
null _ = False
[TraversablePair] Traversable (Pair c) using FoldablePair where
traverse f (l, r) = (l,) <$> f r
2023-03-06 14:50:09 -05:00
record Bazaar a b t where
constructor MkBazaar
2023-03-06 16:44:26 -05:00
runBazaar : forall f. Applicative f => (a -> f b) -> f t
2023-03-06 14:50:09 -05:00
Functor (Bazaar a b) where
map f (MkBazaar g) = MkBazaar (map f . g)
Applicative (Bazaar a b) where
pure a = MkBazaar $ \_ => pure a
2023-03-06 16:44:26 -05:00
mf <*> ma = MkBazaar $ \k => runBazaar mf k <*> runBazaar ma k
2023-03-06 14:50:09 -05:00
sell : a -> Bazaar a b b
sell a = MkBazaar ($ a)
record Baz t b a where
constructor MkBaz
2023-03-06 16:44:26 -05:00
runBaz : forall f. Applicative f => (a -> f b) -> f t
2023-03-06 14:50:09 -05:00
Functor (Baz t b) where
map f (MkBaz g) = MkBaz (g . (. f))
sold : Baz t a a -> t
sold m = runBaz @{ApplicativeId} m id
2023-03-06 14:50:09 -05:00
Foldable (Baz t b) where
2023-03-06 16:44:26 -05:00
foldr f i bz = runBaz bz @{appEndo} f i
2023-03-06 14:50:09 -05:00
where
-- Equivalent to `Const (Endomorphism acc)`
appEndo : Applicative (\_ => acc -> acc)
appEndo = MkApplicative @{MkFunctor (const id)} (const id) (.)
Traversable (Baz t b) where
2023-03-06 16:44:26 -05:00
traverse f bz = map (\m => MkBaz (runBazaar m)) $ runBaz bz @{Compose} $ \x => sell <$> f x
2023-03-06 14:50:09 -05:00
public export
2023-03-14 12:52:45 -04:00
wanderDef : Profunctor p => (forall f. Traversable f => p a b -> p (f a) (f b))
-> (forall f. Applicative f => (a -> f b) -> s -> f t) -> p a b -> p s t
wanderDef tr f = dimap (\s => MkBaz $ \afb => f afb s) sold . tr
2023-03-06 14:50:09 -05:00
2023-03-07 22:15:08 -05:00
------------------------------------------------------------------------------
-- Traversing interface
------------------------------------------------------------------------------
||| The interface of profunctors that implement `wander`.
||| NOTE: Definitions in terms of `wander` are much more efficient!
|||
||| Laws:
||| * `traverse' = wander traverse`
||| * `traverse' . lmap f = lmap (map f) . traverse'`
||| * `traverse' . rmap f = rmap (map f) . traverse'`
||| * `traverse' . traverse' = traverse' @{Compose}`
||| * `dimap Id runIdentity . traverse' = id`
2023-03-06 14:50:09 -05:00
public export
interface (Strong p, Choice p) => Traversing p where
traverse' : Traversable f => p a b -> p (f a) (f b)
traverse' = wander traverse
wander : (forall f. Applicative f => (a -> f b) -> s -> f t) -> p a b -> p s t
2023-03-14 12:52:45 -04:00
wander = wanderDef traverse'
2023-03-08 15:05:28 -05:00
------------------------------------------------------------------------------
-- Implementations
------------------------------------------------------------------------------
public export
2023-03-06 19:24:07 -05:00
Traversing Morphism where
traverse' (Mor f) = Mor (map f)
wander f (Mor p) = Mor (f @{ApplicativeId} p)
2023-03-06 19:24:07 -05:00
2023-03-07 22:15:08 -05:00
||| A named implementation of `Traversing` for function types.
||| Use this to avoid having to use a type wrapper like `Morphism`.
public export
2023-03-06 19:24:07 -05:00
[Function] Traversing (\a,b => a -> b) using Strong.Function where
traverse' = map
wander f = f @{ApplicativeId}
2023-03-06 19:24:07 -05:00
public export
2023-03-06 19:24:07 -05:00
Applicative f => Traversing (Kleislimorphism f) where
traverse' (Kleisli p) = Kleisli (traverse p)
wander f (Kleisli p) = Kleisli (f p)
public export
2023-03-06 19:24:07 -05:00
Applicative f => Traversing (Star f) where
traverse' (MkStar p) = MkStar (traverse p)
wander f (MkStar p) = MkStar (f p)
public export
Monoid r => Traversing (Forget r) where
traverse' (MkForget k) = MkForget (foldMap k)
wander f (MkForget k) = MkForget (runConst . f (MkConst . k))
2023-03-06 19:24:07 -05:00
2023-03-07 22:15:08 -05:00
------------------------------------------------------------------------------
-- CofreeTraversing
2023-03-07 22:15:08 -05:00
------------------------------------------------------------------------------
2023-03-07 22:15:08 -05:00
||| The comonad generated by the reflective subcategory of profunctors that
||| implement `Traversing`.
public export
record CofreeTraversing p a b where
constructor MkCFT
2023-03-06 16:44:26 -05:00
runCFT : forall f. Traversable f => p (f a) (f b)
public export
Profunctor p => Profunctor (CofreeTraversing p) where
lmap f (MkCFT p) = MkCFT (lmap (map f) p)
rmap g (MkCFT p) = MkCFT (rmap (map g) p)
dimap f g (MkCFT p) = MkCFT (dimap (map f) (map g) p)
public export
Profunctor p => GenStrong Pair (CofreeTraversing p) where
strongr (MkCFT p) = MkCFT (p @{Compose @{%search} @{TraversablePair}})
2023-03-07 22:28:38 -05:00
strongl = dimap swap' swap' . strongr {p=CofreeTraversing p}
public export
Profunctor p => GenStrong Either (CofreeTraversing p) where
strongr (MkCFT p) = MkCFT (p @{Compose {f=Either c}})
2023-03-07 22:28:38 -05:00
strongl = dimap swap' swap' . strongr {p=CofreeTraversing p}
public export
Profunctor p => Traversing (CofreeTraversing p) where
traverse' (MkCFT p) = MkCFT (p @{Compose})
public export
ProfunctorFunctor CofreeTraversing where
promap f (MkCFT p) = MkCFT (f p)
public export
ProfunctorComonad CofreeTraversing where
proextract (MkCFT p) = p @{TraversableId}
produplicate (MkCFT p) = MkCFT $ MkCFT $ p @{Compose}
public export
Profunctor p => Functor (CofreeTraversing p a) where
map = rmap
public export
cofreeTraversing : Traversing p => p :-> q -> p :-> CofreeTraversing q
cofreeTraversing f p = MkCFT $ f $ traverse' p
public export
uncofreeTraversing : Profunctor q => p :-> CofreeTraversing q -> p :-> q
uncofreeTraversing f p = proextract $ f p
2023-03-07 22:15:08 -05:00
------------------------------------------------------------------------------
-- FreeTraversing
2023-03-07 22:15:08 -05:00
------------------------------------------------------------------------------
2023-03-07 22:15:08 -05:00
||| The monad generated by the reflective subcategory of profunctors that
||| implement `Traversing`.
public export
data FreeTraversing : (p : Type -> Type -> Type) -> Type -> Type -> Type where
MkFT : Traversable f => (f y -> b) -> p x y -> (a -> f x) -> FreeTraversing p a b
public export
Profunctor (FreeTraversing p) where
lmap f (MkFT l m r) = MkFT l m (r . f)
rmap f (MkFT l m r) = MkFT (f . l) m r
dimap f g (MkFT l m r) = MkFT (g . l) m (r . f)
public export
GenStrong Pair (FreeTraversing p) where
strongr (MkFT l m r) = MkFT @{Compose @{TraversablePair}} (map l) m (map r)
2023-03-07 22:28:38 -05:00
strongl = dimap swap' swap' . strongr {p=FreeTraversing p}
public export
GenStrong Either (FreeTraversing p) where
strongr (MkFT l m r) = MkFT @{Compose {t=Either c}} (map l) m (map r)
2023-03-07 22:28:38 -05:00
strongl = dimap swap' swap' . strongr {p=FreeTraversing p}
public export
Traversing (FreeTraversing p) where
traverse' (MkFT l m r) = MkFT @{Compose} (map l) m (map r)
public export
ProfunctorFunctor FreeTraversing where
promap f (MkFT l m r) = MkFT l (f m) r
public export
ProfunctorMonad FreeTraversing where
propure p = MkFT @{TraversableId} id p id
projoin (MkFT l' (MkFT l m r) r') = MkFT @{Compose} (l' . map l) m (map r . r')
public export
freeTraversing : Traversing q => p :-> q -> FreeTraversing p :-> q
freeTraversing fn (MkFT {f} l m r) = dimap r l (traverse' {f} (fn m))
public export
unfreeTraversing : FreeTraversing p :-> q -> p :-> q
unfreeTraversing f p = f (MkFT @{TraversableId} id p id)