← Back

Modules

CategoricalCrypto

  • CategoricalCrypto
  • Channel.Category
  • Channel.Core
  • Channel.Selection
  • Examples.Basic
  • Examples.Commitment
  • Examples.Signatures
  • Machine.Constraints
  • Machine.Core
  • SFunM

Categories

  • Discrete
  • FreeMonoidal
  • FreeStrictMonoidal
  • GradedKleisli
  • MonoidalCoherence
  • NaturalTransformationHelper
  • Properties

Class

  • Monad.Ext
1234567891011121314
{-# OPTIONS --cubical-compatible #-}
module Class.Show.Core where
 
open import Class.Prelude
open import Class.Core
 
record Show (A : Type ℓ) : Type ℓ where
constructor mkShow
field show : A → String
open Show ⦃...⦄ public
 
Show¹ = Show ¹
Show² = Show ²
Show³ = Show ³