summaryrefslogtreecommitdiff
path: root/lib/ur/top.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-02-24 13:46:08 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-02-24 13:46:08 -0500
commit541bd325e7e0be52aa27dd56f16f489c44e05d2b (patch)
treefc4a6f3cb49df2a30d49e29bf871648fafa430fa /lib/ur/top.urs
parent7865cb372d95c42542d59cbcf83ba541b0ab3f8a (diff)
Top.Fold.concat elaborates
Diffstat (limited to 'lib/ur/top.urs')
-rw-r--r--lib/ur/top.urs48
1 files changed, 24 insertions, 24 deletions
diff --git a/lib/ur/top.urs b/lib/ur/top.urs
index 563f6afd..a32a87a3 100644
--- a/lib/ur/top.urs
+++ b/lib/ur/top.urs
@@ -3,15 +3,15 @@
con folder = K ==> fn r :: {K} =>
tf :: ({K} -> Type)
-> (nm :: Name -> v :: K -> r :: {K} -> tf r
- -> fn [[nm] ~ r] => tf ([nm = v] ++ r))
+ -> [[nm] ~ r] => tf ([nm = v] ++ r))
-> tf [] -> tf r
structure Folder : sig
val nil : K --> folder (([]) :: {K})
val cons : K --> r ::: {K} -> nm :: Name -> v :: K
- -> fn [[nm] ~ r] => folder r -> folder ([nm = v] ++ r)
+ -> [[nm] ~ r] => folder r -> folder ([nm = v] ++ r)
val concat : K --> r1 ::: {K} -> r2 ::: {K}
- -> fn [r1 ~ r2] => folder r1 -> folder r2 -> folder (r1 ++ r2)
+ -> [r1 ~ r2] => folder r1 -> folder r2 -> folder (r1 ++ r2)
end
@@ -40,78 +40,78 @@ val txt : t ::: Type -> ctx ::: {Unit} -> use ::: {Type} -> show t -> t
val foldUR : tf :: Type -> tr :: ({Unit} -> Type)
-> (nm :: Name -> rest :: {Unit}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf -> tr rest -> tr ([nm] ++ rest))
-> tr [] -> r ::: {Unit} -> folder r -> $(mapUT tf r) -> tr r
val foldUR2 : tf1 :: Type -> tf2 :: Type -> tr :: ({Unit} -> Type)
-> (nm :: Name -> rest :: {Unit}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf1 -> tf2 -> tr rest -> tr ([nm] ++ rest))
-> tr [] -> r ::: {Unit} -> folder r -> $(mapUT tf1 r) -> $(mapUT tf2 r) -> tr r
val foldURX2: tf1 :: Type -> tf2 :: Type -> ctx :: {Unit}
-> (nm :: Name -> rest :: {Unit}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf1 -> tf2 -> xml ctx [] [])
-> r ::: {Unit} -> folder r -> $(mapUT tf1 r) -> $(mapUT tf2 r) -> xml ctx [] []
val foldR : K --> tf :: (K -> Type) -> tr :: ({K} -> Type)
-> (nm :: Name -> t :: K -> rest :: {K}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf t -> tr rest -> tr ([nm = t] ++ rest))
-> tr [] -> r ::: {K} -> folder r -> $(map tf r) -> tr r
val foldR2 : K --> tf1 :: (K -> Type) -> tf2 :: (K -> Type)
-> tr :: ({K} -> Type)
-> (nm :: Name -> t :: K -> rest :: {K}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf1 t -> tf2 t -> tr rest -> tr ([nm = t] ++ rest))
-> tr []
-> r ::: {K} -> folder r -> $(map tf1 r) -> $(map tf2 r) -> tr r
val foldRX : K --> tf :: (K -> Type) -> ctx :: {Unit}
-> (nm :: Name -> t :: K -> rest :: {K}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf t -> xml ctx [] [])
-> r ::: {K} -> folder r -> $(map tf r) -> xml ctx [] []
val foldRX2 : K --> tf1 :: (K -> Type) -> tf2 :: (K -> Type) -> ctx :: {Unit}
-> (nm :: Name -> t :: K -> rest :: {K}
- -> fn [[nm] ~ rest] =>
+ -> [[nm] ~ rest] =>
tf1 t -> tf2 t -> xml ctx [] [])
-> r ::: {K} -> folder r
-> $(map tf1 r) -> $(map tf2 r) -> xml ctx [] []
val queryX : tables ::: {{Type}} -> exps ::: {Type} -> ctx ::: {Unit}
-> sql_query tables exps
- -> fn [tables ~ exps] =>
+ -> [tables ~ exps] =>
($(exps ++ map (fn fields :: {Type} => $fields) tables)
-> xml ctx [] [])
-> transaction (xml ctx [] [])
val queryX' : tables ::: {{Type}} -> exps ::: {Type} -> ctx ::: {Unit}
-> sql_query tables exps
- -> fn [tables ~ exps] =>
+ -> [tables ~ exps] =>
($(exps ++ map (fn fields :: {Type} => $fields) tables)
-> transaction (xml ctx [] []))
-> transaction (xml ctx [] [])
val oneOrNoRows : tables ::: {{Type}} -> exps ::: {Type}
- -> sql_query tables exps
- -> fn [tables ~ exps] =>
- transaction
- (option
- $(exps
- ++ map (fn fields :: {Type} => $fields) tables))
+ -> [tables ~ exps] =>
+ sql_query tables exps
+ -> transaction
+ (option
+ $(exps
+ ++ map (fn fields :: {Type} => $fields) tables))
val oneRow : tables ::: {{Type}} -> exps ::: {Type}
- -> sql_query tables exps
- -> fn [tables ~ exps] =>
- transaction
- $(exps
- ++ map (fn fields :: {Type} => $fields) tables)
-
+ -> [tables ~ exps] =>
+ sql_query tables exps
+ -> transaction
+ $(exps
+ ++ map (fn fields :: {Type} => $fields) tables)
+
val eqNullable : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
-> t ::: Type -> sql_injectable (option t)
-> sql_exp tables agg exps (option t)