annotate final_main/src/MetaCodeSegment.agda @ 0:83f997abf3b5

first commit
author e155702
date Thu, 14 Feb 2019 16:51:50 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
83f997abf3b5 first commit
e155702
parents:
diff changeset
1 data CodeSegment {l1 l2 : Level} (A : Set l1) (B : Set l2) : Set (l ⊔ l1 ⊔ l2) where
83f997abf3b5 first commit
e155702
parents:
diff changeset
2 cs : {{_ : DataSegment A}} {{_ : DataSegment B}}
83f997abf3b5 first commit
e155702
parents:
diff changeset
3 -> (A -> B) -> CodeSegment A B
83f997abf3b5 first commit
e155702
parents:
diff changeset
4