1
0
forked from GitHub/gf-rgl

nonExist now does the expected thing

This commit is contained in:
kr.angelov
2013-08-23 13:17:45 +00:00
parent 50dcaa87b6
commit 62afa58663
2 changed files with 2 additions and 2 deletions

View File

@@ -36,6 +36,6 @@ resource Predef = {
oper toStr : (L : Type) -> L -> Str = variants {} ; -- find the "first" string oper toStr : (L : Type) -> L -> Str = variants {} ; -- find the "first" string
oper mapStr : (L : Type) -> (Str -> Str) -> L -> L = variants {} ; oper mapStr : (L : Type) -> (Str -> Str) -> L -> L = variants {} ;
-- map all strings in a data structure; experimental --- -- map all strings in a data structure; experimental ---
oper nonExist : Str = variants {} ; -- a placeholder for non-existant morphological forms
} ; } ;

View File

@@ -35,7 +35,7 @@ oper
-- Missing form. -- Missing form.
nonExist : Str = variants {} ; nonExist : Str = Predef.nonExist;
-- Optional string with preference on the string vs. empty. -- Optional string with preference on the string vs. empty.