Created
March 9, 2018 21:54
-
-
Save Saizan/2dc3f52209357bf8c1c94c608525b497 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
{-# OPTIONS --type-in-type #-} | |
module Coden (m : Set → Set) where | |
open import Category.Functor | |
open RawFunctor {{...}} | |
Ran : (K : Set → Set) → Set → Set | |
Ran K a = (c : Set) → (a → K c) → m c | |
α : ∀ {a}{K} → Ran K (K a) → m a | |
α m = m _ (\ x → x) | |
-- universal map | |
intro : ∀ {H : Set → Set}{{_ : RawFunctor H}}{K} → (∀ a → H (K a) → m a) → ∀ a → H a → Ran K a | |
intro t a r = λ c x → t c (x <$> r) | |
Cod : Set → Set | |
Cod a = Ran m a | |
instance | |
codF : RawFunctor Cod | |
RawFunctor._<$>_ codF f m = λ c x → m c λ x₁ → x (f x₁) | |
cod2 : RawFunctor (\ x → Cod (Cod x)) | |
RawFunctor._<$>_ cod2 f m = _<$>_ {F = Cod} f <$> m | |
join join' : ∀ a → Cod (Cod a) → Cod a | |
-- definition from the diagram | |
join = intro (\ a x → α (α <$> x)) | |
-- normal form of the above | |
join' = λ a codcod c k → codcod c (λ cod → cod c k) | |
bind : ∀ {a b} → Cod a → (a → Cod b) → Cod b | |
bind m f c k = m c (λ z → f z c k) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment