Moved transfer libraries to transfer/lib

This commit is contained in:
bringert
2005-11-30 16:00:06 +00:00
parent 47ad17e78d
commit 5ffef88edc
7 changed files with 40 additions and 9 deletions

4
transfer/lib/bool.tr Normal file
View File

@@ -0,0 +1,4 @@
depif : (A:Type) -> (B:Type) -> (b:Bool) -> A -> B -> if Type b then A else B
depif _ _ True x _ = x
depif _ _ False _ y = y