Improved documentation of functions and default arguments a bit

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@985 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2008-06-18 18:56:29 +00:00
parent 9fd097beb7
commit 1d4a3c700b
7 changed files with 96 additions and 57 deletions
+2 -1
View File
@@ -21,7 +21,8 @@ When the match is performed many times the rule form is more efficient, because
> match("abc", match:"$b+^") == false
>
> f := match_rule(match: "a+|b+")
> f("xyz") == false
> f("xyz") == false
> f("aabb") == true
--See also--
| [[fun:contains]] Does a string contain another one?