Hindi and Sindhi in resource Make

This commit is contained in:
aarne
2012-02-24 10:01:02 +00:00
parent a777481313
commit 5e64690949
2 changed files with 5 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ resource Predef = {
oper toLower : Tok -> Tok = variants {} ; -- map all chars to lower case
oper show : (P : Type) -> P -> Tok = variants {} ; -- convert param to string
oper read : (P : Type) -> Tok -> P = variants {} ; -- convert string to param
oper eqVal : (P : Type) -> P -> P -> PBool = variants {} ; -- test if equal values
oper toStr : (L : Type) -> L -> Str = variants {} ; -- find the "first" string
oper mapStr : (L : Type) -> (Str -> Str) -> L -> L = variants {} ;
-- map all strings in a data structure; experimental ---