annotate lib/basis.urs @ 565:74800be65591

Creation of sources in server code
author Adam Chlipala <adamc@hcoop.net>
date Fri, 19 Dec 2008 11:47:18 -0500
parents 803b2f3bb86b
children a152905c3c3b
rev   line source
adamc@56 1 type int
adamc@56 2 type float
adamc@56 3 type string
adamc@436 4 type time
adamc@91 5
adamc@119 6 type unit = {}
adamc@119 7
adamc@186 8 datatype bool = False | True
adamc@186 9
adamc@288 10 datatype option t = None | Some of t
adamc@284 11
adamc@91 12
adamc@256 13 (** Basic type classes *)
adamc@256 14
adamc@256 15 class eq
adamc@256 16 val eq : t ::: Type -> eq t -> t -> t -> bool
adamc@257 17 val ne : t ::: Type -> eq t -> t -> t -> bool
adamc@256 18 val eq_int : eq int
adamc@394 19 val eq_float : eq float
adamc@256 20 val eq_string : eq string
adamc@256 21 val eq_bool : eq bool
adamc@437 22 val eq_time : eq time
adamc@422 23 val mkEq : t ::: Type -> (t -> t -> bool) -> eq t
adamc@256 24
adamc@389 25 class num
adamc@417 26 val zero : t ::: Type -> num t -> t
adamc@389 27 val neg : t ::: Type -> num t -> t -> t
adamc@389 28 val plus : t ::: Type -> num t -> t -> t -> t
adamc@389 29 val minus : t ::: Type -> num t -> t -> t -> t
adamc@389 30 val times : t ::: Type -> num t -> t -> t -> t
adamc@389 31 val div : t ::: Type -> num t -> t -> t -> t
adamc@389 32 val mod : t ::: Type -> num t -> t -> t -> t
adamc@389 33 val num_int : num int
adamc@390 34 val num_float : num float
adamc@389 35
adamc@391 36 class ord
adamc@391 37 val lt : t ::: Type -> ord t -> t -> t -> bool
adamc@391 38 val le : t ::: Type -> ord t -> t -> t -> bool
adamc@391 39 val gt : t ::: Type -> ord t -> t -> t -> bool
adamc@391 40 val ge : t ::: Type -> ord t -> t -> t -> bool
adamc@391 41 val ord_int : ord int
adamc@394 42 val ord_float : ord float
adamc@394 43 val ord_string : ord string
adamc@394 44 val ord_bool : ord bool
adamc@437 45 val ord_time : ord time
adamc@391 46
adamc@256 47
adamc@283 48 (** String operations *)
adamc@283 49
adamc@283 50 val strcat : string -> string -> string
adamc@283 51
adamc@286 52 class show
adamc@286 53 val show : t ::: Type -> show t -> t -> string
adamc@286 54 val show_int : show int
adamc@286 55 val show_float : show float
adamc@286 56 val show_string : show string
adamc@286 57 val show_bool : show bool
adamc@436 58 val show_time : show time
adamc@452 59 val mkShow : t ::: Type -> (t -> string) -> show t
adamc@286 60
adamc@290 61 class read
adamc@290 62 val read : t ::: Type -> read t -> string -> option t
adamc@292 63 val readError : t ::: Type -> read t -> string -> t
adamc@292 64 (* [readError] calls [error] if the input is malformed. *)
adamc@290 65 val read_int : read int
adamc@290 66 val read_float : read float
adamc@290 67 val read_string : read string
adamc@290 68 val read_bool : read bool
adamc@436 69 val read_time : read time
adamc@288 70
adamc@283 71
adamc@564 72 (** * Monads *)
adamc@564 73
adamc@564 74 class monad :: Type -> Type
adamc@564 75 val return : m ::: (Type -> Type) -> t ::: Type
adamc@564 76 -> monad m
adamc@564 77 -> t -> m t
adamc@564 78 val bind : m ::: (Type -> Type) -> t1 ::: Type -> t2 ::: Type
adamc@564 79 -> monad m
adamc@564 80 -> m t1 -> (t1 -> m t2)
adamc@564 81 -> m t2
adamc@564 82
adamc@456 83 con transaction :: Type -> Type
adamc@564 84 val transaction_monad : monad transaction
adamc@456 85
adamc@565 86 con source :: Type -> Type
adamc@565 87 val source : t ::: Type -> t -> transaction (source t)
adamc@565 88
adamc@565 89 con signal :: Type -> Type
adamc@565 90 val signal_monad : monad signal
adamc@565 91 val signal : t ::: Type -> source t -> signal t
adamc@456 92
adamc@456 93
adamc@456 94 (** HTTP operations *)
adamc@456 95
adamc@456 96 val requestHeader : string -> transaction (option string)
adamc@456 97
adamc@459 98 con http_cookie :: Type -> Type
adamc@459 99 val getCookie : t ::: Type -> http_cookie t -> transaction (option t)
adamc@459 100 val setCookie : t ::: Type -> http_cookie t -> t -> transaction unit
adamc@459 101
adamc@456 102
adamc@203 103 (** SQL *)
adamc@203 104
adamc@203 105 con sql_table :: {Type} -> Type
adamc@203 106
adamc@204 107 (*** Queries *)
adamc@204 108
adamc@233 109 con sql_query :: {{Type}} -> {Type} -> Type
adamc@233 110 con sql_query1 :: {{Type}} -> {{Type}} -> {Type} -> Type
adamc@234 111 con sql_exp :: {{Type}} -> {{Type}} -> {Type} -> Type -> Type
adamc@204 112
adamc@223 113 con sql_subset :: {{Type}} -> {{Type}} -> Type
adamc@223 114 val sql_subset : keep_drop :: {({Type} * {Type})}
adamc@354 115 -> sql_subset
adamc@354 116 (fold (fn nm (fields :: ({Type} * {Type}))
adamc@354 117 acc [[nm] ~ acc]
adamc@354 118 [fields.1 ~ fields.2] =>
adamc@354 119 [nm = fields.1 ++ fields.2]
adamc@354 120 ++ acc) [] keep_drop)
adamc@354 121 (fold (fn nm (fields :: ({Type} * {Type}))
adamc@354 122 acc [[nm] ~ acc] =>
adamc@354 123 [nm = fields.1] ++ acc)
adamc@354 124 [] keep_drop)
adamc@354 125 val sql_subset_all : tables :: {{Type}} -> sql_subset tables tables
adamc@223 126
adamc@229 127 val sql_query1 : tables ::: {{Type}}
adamc@354 128 -> grouped ::: {{Type}}
adamc@354 129 -> selectedFields ::: {{Type}}
adamc@354 130 -> selectedExps ::: {Type}
adamc@354 131 -> {From : $(fold (fn nm (fields :: {Type}) acc [[nm] ~ acc] =>
adamc@354 132 [nm = sql_table fields] ++ acc)
adamc@354 133 [] tables),
adamc@354 134 Where : sql_exp tables [] [] bool,
adamc@354 135 GroupBy : sql_subset tables grouped,
adamc@354 136 Having : sql_exp grouped tables [] bool,
adamc@354 137 SelectFields : sql_subset grouped selectedFields,
adamc@354 138 SelectExps : $(fold (fn nm (t :: Type) acc [[nm] ~ acc] =>
adamc@354 139 [nm = sql_exp grouped tables [] t]
adamc@354 140 ++ acc) [] selectedExps) }
adamc@354 141 -> sql_query1 tables selectedFields selectedExps
adamc@229 142
adamc@229 143 type sql_relop
adamc@229 144 val sql_union : sql_relop
adamc@229 145 val sql_intersect : sql_relop
adamc@229 146 val sql_except : sql_relop
adamc@260 147 val sql_relop : tables1 ::: {{Type}}
adamc@354 148 -> tables2 ::: {{Type}}
adamc@354 149 -> selectedFields ::: {{Type}}
adamc@354 150 -> selectedExps ::: {Type}
adamc@354 151 -> sql_relop
adamc@354 152 -> sql_query1 tables1 selectedFields selectedExps
adamc@354 153 -> sql_query1 tables2 selectedFields selectedExps
adamc@354 154 -> sql_query1 selectedFields selectedFields selectedExps
adamc@229 155
adamc@230 156 type sql_direction
adamc@230 157 val sql_asc : sql_direction
adamc@230 158 val sql_desc : sql_direction
adamc@230 159
adamc@234 160 con sql_order_by :: {{Type}} -> {Type} -> Type
adamc@234 161 val sql_order_by_Nil : tables ::: {{Type}} -> exps :: {Type} -> sql_order_by tables exps
adamc@234 162 val sql_order_by_Cons : tables ::: {{Type}} -> exps ::: {Type} -> t ::: Type
adamc@354 163 -> sql_exp tables [] exps t -> sql_direction
adamc@354 164 -> sql_order_by tables exps
adamc@354 165 -> sql_order_by tables exps
adamc@230 166
adamc@231 167 type sql_limit
adamc@231 168 val sql_no_limit : sql_limit
adamc@231 169 val sql_limit : int -> sql_limit
adamc@354 170
adamc@232 171 type sql_offset
adamc@232 172 val sql_no_offset : sql_offset
adamc@232 173 val sql_offset : int -> sql_offset
adamc@232 174
adamc@229 175 val sql_query : tables ::: {{Type}}
adamc@354 176 -> selectedFields ::: {{Type}}
adamc@354 177 -> selectedExps ::: {Type}
adamc@354 178 -> {Rows : sql_query1 tables selectedFields selectedExps,
adamc@354 179 OrderBy : sql_order_by tables selectedExps,
adamc@354 180 Limit : sql_limit,
adamc@354 181 Offset : sql_offset}
adamc@354 182 -> sql_query selectedFields selectedExps
adamc@204 183
adamc@354 184 val sql_field : otherTabs ::: {{Type}} -> otherFields ::: {Type}
adamc@354 185 -> fieldType ::: Type -> agg ::: {{Type}}
adamc@354 186 -> exps ::: {Type}
adamc@354 187 -> tab :: Name -> field :: Name
adamc@354 188 -> sql_exp
adamc@354 189 ([tab = [field = fieldType] ++ otherFields] ++ otherTabs)
adamc@354 190 agg exps fieldType
adamc@234 191
adamc@354 192 val sql_exp : tabs ::: {{Type}} -> agg ::: {{Type}} -> t ::: Type -> rest ::: {Type}
adamc@354 193 -> nm :: Name
adamc@354 194 -> sql_exp tabs agg ([nm = t] ++ rest) t
adamc@209 195
adamc@221 196 class sql_injectable
adamc@221 197 val sql_bool : sql_injectable bool
adamc@221 198 val sql_int : sql_injectable int
adamc@221 199 val sql_float : sql_injectable float
adamc@221 200 val sql_string : sql_injectable string
adamc@437 201 val sql_time : sql_injectable time
adamc@467 202 val sql_option_bool : sql_injectable (option bool)
adamc@467 203 val sql_option_int : sql_injectable (option int)
adamc@467 204 val sql_option_float : sql_injectable (option float)
adamc@467 205 val sql_option_string : sql_injectable (option string)
adamc@467 206 val sql_option_time : sql_injectable (option time)
adamc@354 207 val sql_inject : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 208 -> t ::: Type
adamc@354 209 -> sql_injectable t -> t -> sql_exp tables agg exps t
adamc@209 210
adamc@470 211 val sql_is_null : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@470 212 -> t ::: Type
adamc@470 213 -> sql_exp tables agg exps (option t)
adamc@470 214 -> sql_exp tables agg exps bool
adamc@470 215
adamc@559 216 class sql_arith
adamc@559 217 val sql_int_arith : sql_arith int
adamc@559 218 val sql_float_arith : sql_arith float
adamc@559 219
adamc@220 220 con sql_unary :: Type -> Type -> Type
adamc@220 221 val sql_not : sql_unary bool bool
adamc@354 222 val sql_unary : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 223 -> arg ::: Type -> res ::: Type
adamc@354 224 -> sql_unary arg res -> sql_exp tables agg exps arg
adamc@354 225 -> sql_exp tables agg exps res
adamc@220 226
adamc@559 227 val sql_neg : t ::: Type -> sql_arith t -> sql_unary t t
adamc@559 228
adamc@220 229 con sql_binary :: Type -> Type -> Type -> Type
adamc@220 230 val sql_and : sql_binary bool bool bool
adamc@220 231 val sql_or : sql_binary bool bool bool
adamc@234 232 val sql_binary : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 233 -> arg1 ::: Type -> arg2 ::: Type -> res ::: Type
adamc@354 234 -> sql_binary arg1 arg2 res -> sql_exp tables agg exps arg1
adamc@354 235 -> sql_exp tables agg exps arg2
adamc@354 236 -> sql_exp tables agg exps res
adamc@220 237
adamc@559 238 val sql_plus : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 239 val sql_minus : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 240 val sql_times : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 241 val sql_div : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 242 val sql_mod : sql_binary int int int
adamc@559 243
adamc@559 244 val sql_eq : t ::: Type -> sql_binary t t bool
adamc@559 245 val sql_ne : t ::: Type -> sql_binary t t bool
adamc@559 246 val sql_lt : t ::: Type -> sql_binary t t bool
adamc@559 247 val sql_le : t ::: Type -> sql_binary t t bool
adamc@559 248 val sql_gt : t ::: Type -> sql_binary t t bool
adamc@559 249 val sql_ge : t ::: Type -> sql_binary t t bool
adamc@203 250
adamc@235 251 val sql_count : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@544 252 -> sql_exp tables agg exps int
adamc@235 253
adamc@236 254 con sql_aggregate :: Type -> Type
adamc@354 255 val sql_aggregate : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 256 -> t ::: Type
adamc@354 257 -> sql_aggregate t -> sql_exp agg agg exps t
adamc@354 258 -> sql_exp tables agg exps t
adamc@236 259
adamc@236 260 class sql_summable
adamc@236 261 val sql_summable_int : sql_summable int
adamc@236 262 val sql_summable_float : sql_summable float
adamc@236 263 val sql_avg : t ::: Type -> sql_summable t -> sql_aggregate t
adamc@236 264 val sql_sum : t ::: Type -> sql_summable t -> sql_aggregate t
adamc@236 265
adamc@236 266 class sql_maxable
adamc@236 267 val sql_maxable_int : sql_maxable int
adamc@236 268 val sql_maxable_float : sql_maxable float
adamc@236 269 val sql_maxable_string : sql_maxable string
adamc@437 270 val sql_maxable_time : sql_maxable time
adamc@236 271 val sql_max : t ::: Type -> sql_maxable t -> sql_aggregate t
adamc@236 272 val sql_min : t ::: Type -> sql_maxable t -> sql_aggregate t
adamc@236 273
adamc@441 274 con sql_nfunc :: Type -> Type
adamc@441 275 val sql_nfunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@441 276 -> t ::: Type
adamc@441 277 -> sql_nfunc t -> sql_exp tables agg exps t
adamc@441 278 val sql_current_timestamp : sql_nfunc time
adamc@441 279
adamc@235 280
adamc@243 281 (*** Executing queries *)
adamc@243 282
adamc@354 283 val query : tables ::: {{Type}} -> exps ::: {Type}
adamc@354 284 -> fn [tables ~ exps] =>
adamc@354 285 state ::: Type
adamc@354 286 -> sql_query tables exps
adamc@356 287 -> ($(exps ++ fold (fn nm (fields :: {Type}) acc [[nm] ~ acc] =>
adamc@354 288 [nm = $fields] ++ acc) [] tables)
adamc@354 289 -> state
adamc@354 290 -> transaction state)
adamc@354 291 -> state
adamc@354 292 -> transaction state
adamc@243 293
adamc@243 294
adamc@299 295 (*** Database mutators *)
adamc@299 296
adamc@299 297 type dml
adamc@299 298 val dml : dml -> transaction unit
adamc@299 299
adamc@299 300 val insert : fields ::: {Type}
adamc@354 301 -> sql_table fields
adamc@354 302 -> $(fold (fn nm (t :: Type) acc [[nm] ~ acc] =>
adamc@354 303 [nm = sql_exp [] [] [] t] ++ acc)
adamc@354 304 [] fields)
adamc@354 305 -> dml
adamc@299 306
adamc@403 307 val update : unchanged ::: {Type} -> changed :: {Type} ->
adamc@354 308 fn [changed ~ unchanged] =>
adamc@354 309 $(fold (fn nm (t :: Type) acc [[nm] ~ acc] =>
adamc@354 310 [nm = sql_exp [T = changed ++ unchanged] [] [] t]
adamc@354 311 ++ acc)
adamc@354 312 [] changed)
adamc@354 313 -> sql_table (changed ++ unchanged)
adamc@354 314 -> sql_exp [T = changed ++ unchanged] [] [] bool
adamc@354 315 -> dml
adamc@299 316
adamc@299 317 val delete : fields ::: {Type}
adamc@354 318 -> sql_table fields
adamc@354 319 -> sql_exp [T = fields] [] [] bool
adamc@354 320 -> dml
adamc@299 321
adamc@338 322 (*** Sequences *)
adamc@338 323
adamc@338 324 type sql_sequence
adamc@338 325 val nextval : sql_sequence -> transaction int
adamc@338 326
adamc@299 327
adamc@203 328 (** XML *)
adamc@203 329
adamc@139 330 con tag :: {Type} -> {Unit} -> {Unit} -> {Type} -> {Type} -> Type
adamc@91 331
adamc@91 332
adamc@139 333 con xml :: {Unit} -> {Type} -> {Type} -> Type
adamc@141 334 val cdata : ctx ::: {Unit} -> use ::: {Type} -> string -> xml ctx use []
adamc@354 335 val tag : attrsGiven ::: {Type} -> attrsAbsent ::: {Type}
adamc@354 336 -> ctxOuter ::: {Unit} -> ctxInner ::: {Unit}
adamc@354 337 -> useOuter ::: {Type} -> useInner ::: {Type}
adamc@354 338 -> bindOuter ::: {Type} -> bindInner ::: {Type}
adamc@354 339 -> fn [attrsGiven ~ attrsAbsent]
adamc@354 340 [useOuter ~ useInner]
adamc@354 341 [bindOuter ~ bindInner] =>
adamc@354 342 $attrsGiven
adamc@354 343 -> tag (attrsGiven ++ attrsAbsent)
adamc@354 344 ctxOuter ctxInner useOuter bindOuter
adamc@354 345 -> xml ctxInner useInner bindInner
adamc@354 346 -> xml ctxOuter (useOuter ++ useInner) (bindOuter ++ bindInner)
adamc@140 347 val join : ctx ::: {Unit}
adamc@139 348 -> use1 ::: {Type} -> bind1 ::: {Type} -> bind2 ::: {Type}
adamc@354 349 -> fn [use1 ~ bind1] [bind1 ~ bind2] =>
adamc@354 350 xml ctx use1 bind1
adamc@354 351 -> xml ctx (use1 ++ bind1) bind2
adamc@354 352 -> xml ctx use1 (bind1 ++ bind2)
adamc@354 353 val useMore : ctx ::: {Unit} -> use1 ::: {Type} -> use2 ::: {Type}
adamc@354 354 -> bind ::: {Type}
adamc@354 355 -> fn [use1 ~ use2] =>
adamc@354 356 xml ctx use1 bind
adamc@354 357 -> xml ctx (use1 ++ use2) bind
adamc@91 358
adamc@110 359 con xhtml = xml [Html]
adamc@139 360 con page = xhtml [] []
adamc@325 361 con xbody = xml [Body] [] []
adamc@326 362 con xtr = xml [Body, Tr] [] []
adamc@361 363 con xform = xml [Body, Form] [] []
adamc@110 364
adamc@204 365 (*** HTML details *)
adamc@204 366
adamc@140 367 con html = [Html]
adamc@140 368 con head = [Head]
adamc@140 369 con body = [Body]
adamc@361 370 con form = [Body, Form]
adamc@332 371 con tabl = [Body, Table]
adamc@332 372 con tr = [Body, Tr]
adamc@93 373
adamc@140 374 val head : unit -> tag [] html head [] []
adamc@140 375 val title : unit -> tag [] head [] [] []
adamc@110 376
adamc@140 377 val body : unit -> tag [] html body [] []
adamc@354 378 con bodyTag = fn (attrs :: {Type}) =>
adamc@354 379 ctx ::: {Unit} ->
adamc@354 380 fn [[Body] ~ ctx] =>
adamc@354 381 unit -> tag attrs ([Body] ++ ctx) ([Body] ++ ctx) [] []
adamc@354 382 con bodyTagStandalone = fn (attrs :: {Type}) =>
adamc@354 383 ctx ::: {Unit}
adamc@354 384 -> fn [[Body] ~ ctx] =>
adamc@354 385 unit -> tag attrs ([Body] ++ ctx) [] [] []
adamc@141 386
adamc@141 387 val br : bodyTagStandalone []
adamc@119 388
adamc@140 389 val p : bodyTag []
adamc@140 390 val b : bodyTag []
adamc@140 391 val i : bodyTag []
adamc@407 392 val tt : bodyTag []
adamc@140 393 val font : bodyTag [Size = int, Face = string]
adamc@140 394
adamc@140 395 val h1 : bodyTag []
adamc@443 396 val h2 : bodyTag []
adamc@443 397 val h3 : bodyTag []
adamc@443 398 val h4 : bodyTag []
adamc@469 399
adamc@140 400 val li : bodyTag []
adamc@469 401 val ol : bodyTag []
adamc@469 402 val ul : bodyTag []
adamc@140 403
adamc@410 404 val hr : bodyTag []
adamc@410 405
adamc@280 406 val a : bodyTag [Link = transaction page]
adamc@140 407
adamc@361 408 val form : ctx ::: {Unit} -> bind ::: {Type}
adamc@354 409 -> fn [[Body] ~ ctx] =>
adamc@354 410 xml form [] bind
adamc@354 411 -> xml ([Body] ++ ctx) [] []
adamc@361 412 con formTag = fn (ty :: Type) (inner :: {Unit}) (attrs :: {Type}) =>
adamc@354 413 ctx ::: {Unit}
adamc@361 414 -> fn [[Form] ~ ctx] =>
adamc@354 415 nm :: Name -> unit
adamc@361 416 -> tag attrs ([Form] ++ ctx) inner [] [nm = ty]
adamc@444 417 val textbox : formTag string [] [Value = string, Size = int]
adamc@444 418 val password : formTag string [] [Value = string, Size = int]
adamc@444 419 val textarea : formTag string [] [Rows = int, Cols = int]
adamc@153 420
adamc@361 421 val checkbox : formTag bool [] [Checked = bool]
adamc@190 422
adamc@153 423 con radio = [Body, Radio]
adamc@361 424 val radio : formTag string radio []
adamc@153 425 val radioOption : unit -> tag [Value = string] radio [] [] []
adamc@142 426
adamc@154 427 con select = [Select]
adamc@361 428 val select : formTag string select []
adamc@422 429 val option : unit -> tag [Value = string, Selected = bool] select [] [] []
adamc@154 430
adamc@354 431 val submit : ctx ::: {Unit} -> use ::: {Type}
adamc@361 432 -> fn [[Form] ~ ctx] =>
adamc@354 433 unit
adamc@406 434 -> tag [Value = string, Action = $use -> transaction page]
adamc@361 435 ([Form] ++ ctx) ([Form] ++ ctx) use []
adamc@283 436
adamc@325 437 (*** Tables *)
adamc@325 438
adamc@406 439 val tabl : other ::: {Unit} -> fn [other ~ [Body, Table]] =>
adamc@406 440 unit -> tag [Border = int] ([Body] ++ other) ([Body, Table] ++ other) [] []
adamc@406 441 val tr : other ::: {Unit} -> fn [other ~ [Body, Table, Tr]] =>
adamc@406 442 unit -> tag [] ([Body, Table] ++ other) ([Body, Tr] ++ other) [] []
adamc@406 443 val th : other ::: {Unit} -> fn [other ~ [Body, Tr]] =>
adamc@406 444 unit -> tag [] ([Body, Tr] ++ other) ([Body] ++ other) [] []
adamc@406 445 val td : other ::: {Unit} -> fn [other ~ [Body, Tr]] =>
adamc@406 446 unit -> tag [] ([Body, Tr] ++ other) ([Body] ++ other) [] []
adamc@325 447
adamc@283 448
adamc@283 449 (** Aborting *)
adamc@283 450
adamc@283 451 val error : t ::: Type -> xml [Body] [] [] -> t