Meta.Append

1Lab

  • Types with concatenation🔗

This page was written by Amélia Liao

back to index
open import 1Lab.Type
module Meta.Append where

Types with concatenation🔗

record Append {ℓ} (A : Type ℓ) : Type ℓ where
  infixr 8 _<>_

  field
    mempty : A
    _<>_   : A → A → A

open Append ⦃ ... ⦄ public