Update of /cvsroot/wisp/wisp/modules
In directory usw-pr-cvs1:/tmp/cvs-serv4287/modules
Modified Files:
builtin.wid
Log Message:
Dropped |string-ref|.
Index: builtin.wid
===================================================================
RCS file: /cvsroot/wisp/wisp/modules/builtin.wid,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -d -r1.170 -r1.171
--- builtin.wid 4 Sep 2002 14:29:42 -0000 1.170
+++ builtin.wid 7 Sep 2002 21:53:51 -0000 1.171
@@ -2513,7 +2513,7 @@
:Conforms to: Wisp extension.
- :See also: |string-ref|, |vector-ref|, |box-ref|, |make-record-type|.
+ :See also: |vector-ref|, |box-ref|, |make-record-type|.
reverse
@@ -2739,22 +2739,6 @@
:Conforms to: SRFI-13.
-string-ref
-
- (|string-ref| /string/ /index/) <=> /char/
-
- Accesses a character cell of /string/. /index/ must satisfy
- -L <= /index/ < L
- where L is the length of /string/ (see |string-length|).
- If /index/ is negative, it is relative to the end of /string/.
-
- :Conforms to: R5RS, SRFI-13, SRFI-17.
-
- :Obsoletes: |string-set!| of R5RS.
-
- :See also: |reduce-index|.
-
-
string-upcase!
(|string-upcase!| /string/ [/start/ [/end/]]) => ~#<void>~
@@ -2896,7 +2880,7 @@
(|symbol-ref| /symbol/ /index/) => /char/
- Equivalent to (|string-ref| (|symbol->string| /symbol/) /index/) but
+ Equivalent to (|ref| (|symbol->string| /symbol/) /index/) but
more efficient.
:Conforms to: Wisp extension.
|