Mercurial > urweb
view lib/ur/mem.urs @ 1320:add5ae41969e
In FastCGI, signal 304 with a header, not the usual HTTP/1.1 line
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 20 Nov 2010 09:48:03 -0500 |
parents | ac3dbbc85c6e |
children |
line wrap: on
line source
con mem :: K --> Name -> K -> {K} -> Type val mem : K --> nm :: Name -> t :: K -> r :: {K} -> [[nm] ~ r] => mem nm t ([nm = t] ++ r) val mp : K --> K2 --> f :: (K -> K2) -> nm ::: Name -> t ::: K -> r ::: {K} -> mem nm t r -> mem nm (f t) (map f r) val proj : nm ::: Name -> t ::: Type -> r ::: {Type} -> mem nm t r -> $r -> t val replace : nm ::: Name -> t ::: Type -> r ::: {Type} -> mem nm t r -> $r -> t -> $r val fold : K --> tf :: ({K} -> Type) -> r ::: {K} -> (nm :: Name -> v :: K -> r' :: {K} -> [[nm] ~ r'] => mem nm v r -> tf r' -> tf ([nm = v] ++ r')) -> tf [] -> folder r -> tf r