view paper/src/MetaDataSegment.agda @ 104:0ab2de92120b teacher-submit

Added tag 1F-submit for changeset 0a4646310261
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 10:33:15 +0900
parents 3981580ece72
children
line wrap: on
line source

module subtype {l : Level} (Context : Set l) where

record DataSegment {ll : Level} (A : Set ll) : Set (l ⊔ ll) where
  field
    get : Context -> A
    set : Context -> A -> Context