diff options
Diffstat (limited to 'src/algebra/string.spad.pamphlet')
-rw-r--r-- | src/algebra/string.spad.pamphlet | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/string.spad.pamphlet b/src/algebra/string.spad.pamphlet index 74c79801..2271f92b 100644 --- a/src/algebra/string.spad.pamphlet +++ b/src/algebra/string.spad.pamphlet @@ -301,9 +301,9 @@ IndexedString(mn:Integer): Export == Implementation where c: Character cc: CharacterClass --- new n == MAKE_-FULL_-CVEC(n, space$C)$Lisp - new(n, c) == MAKE_-FULL_-CVEC(n, c)$Lisp - empty() == MAKE_-FULL_-CVEC(0@I)$Lisp +-- new n == makeString(n, space$C)$Lisp + new(n, c) == makeString(n, c)$Lisp + empty() == makeString(0@I)$Lisp empty?(s) == %strlength s = 0 #s == %strlength s s = t == %streq(s,t) |