Skip to content

Instantly share code, notes, and snippets.

@gallais
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gallais/d3dae1f7d5fe9e9d5ab5 to your computer and use it in GitHub Desktop.
Save gallais/d3dae1f7d5fe9e9d5ab5 to your computer and use it in GitHub Desktop.
Currying using a Universe
module Currying where
open import Level
open import Data.Product as P using (_×_ ; _,_)
open import Function
data Universe (ℓ : Level) : Set (suc ℓ) where
set : (A : Set ℓ) → Universe ℓ
_**_ : (u₁ u₂ : Universe ℓ) → Universe ℓ
⟦_⟧ : {ℓ : Level} (u : Universe ℓ) → Set ℓ
⟦ set A ⟧ = A
⟦ u₁ ** u₂ ⟧ = ⟦ u₁ ⟧ × ⟦ u₂ ⟧
⟦_⟧→_ : {ℓ : Level} (u : Universe ℓ) (R : Set ℓ) → Set ℓ
⟦ set A ⟧→ R = A → R
⟦ u₁ ** u₂ ⟧→ R = ⟦ u₁ ⟧→ (⟦ u₂ ⟧→ R)
curry : {ℓ : Level} (u : Universe ℓ) {R : Set ℓ} (f : ⟦ u ⟧ → R) → ⟦ u ⟧→ R
curry (set A) f = f
curry (u₁ ** u₂) f = curry u₁ $ λ v₁ →
curry u₂ $ λ v₂ →
f (v₁ , v₂)
uncurry : {ℓ : Level} (u : Universe ℓ) {R : Set ℓ} (f : ⟦ u ⟧→ R) → ⟦ u ⟧ → R
uncurry (set A) f = f
uncurry (u₁ ** u₂) f = P.uncurry $ λ v₁ v₂ → uncurry u₂ (uncurry u₁ f v₁) v₂
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment