← Back

Modules

Leios

  • Abstract
  • Base
  • Blocks
  • Config
  • Defaults
  • FFD
  • Foreign.BaseTypes
  • Foreign.HsTypes
  • Foreign.Types
  • Foreign.Util
  • KeyRegistration
  • Network
  • Prelude
  • Protocol
  • Short
  • Short.Decidable
  • Short.Trace.Verifier
  • Short.Trace.Verifier.Test
  • Simplified
  • Simplified.Deterministic
  • SpecStructure
  • Traces
  • Voting
  • VRF
12345678
{-# OPTIONS --safe --cubical-compatible #-}
module Class.HasAdd.Core where
 
record HasAdd (A : Set) : Set where
infixl 6 _+_
field _+_ : A → A → A
 
open HasAdd ⦃ ... ⦄ public