comparison paper/src/MetaDataSegment.agda @ 61:3981580ece72

Add Meta DataSegment description
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Fri, 03 Feb 2017 10:23:26 +0900
parents
children
comparison
equal deleted inserted replaced
60:ecd3a1e40921 61:3981580ece72
1 module subtype {l : Level} (Context : Set l) where
2
3 record DataSegment {ll : Level} (A : Set ll) : Set (l ⊔ ll) where
4 field
5 get : Context -> A
6 set : Context -> A -> Context
7