← Back

Modules

Leios

  • Abstract
  • Base
  • Blocks
  • Config
  • FFD
  • KeyRegistration
  • Linear
  • Linear.Trace.Verifier
  • Linear.Trace.Verifier.Test
  • Prelude
  • Protocol
  • SpecStructure
  • Voting
  • VRF

Network

  • BasicBroadcast
12345678910
{-# OPTIONS --cubical-compatible #-}
module Class.HasAdd.Core where
 
open import Class.Prelude
 
record HasAdd (A : Type ℓ) : Type ℓ where
infixl 6 _+_
field _+_ : A → A → A
 
open HasAdd ⦃...⦄ public