Add test for (string< "aaa" "aaaaa")
[jscl.git] / src / string.lisp
1 ;;; string.lisp
2
3 ;; JSCL is free software: you can redistribute it and/or
4 ;; modify it under the terms of the GNU General Public License as
5 ;; published by the Free Software Foundation, either version 3 of the
6 ;; License, or (at your option) any later version.
7 ;;
8 ;; JSCL is distributed in the hope that it will be useful, but
9 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
10 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 ;; General Public License for more details.
12 ;;
13 ;; You should have received a copy of the GNU General Public License
14 ;; along with JSCL.  If not, see <http://www.gnu.org/licenses/>.
15
16 (defun string (x)
17   (cond ((stringp x) x)
18         ((symbolp x) (symbol-name x))
19         (t (char-to-string x))))
20
21 (defun string= (s1 s2)
22   (let ((n (length s1)))
23     (when (= (length s2) n)
24       (dotimes (i n t)
25         (unless (char= (char s1 i) (char s2 i))
26           (return-from string= nil))))))
27
28 (defun string< (s1 s2)
29   (let ((len-1 (length s1))
30         (len-2 (length s2)))
31     (cond ((= len-2 0) nil)
32           ((= len-1 0) 0)
33           (t (dotimes (i len-1 nil)
34                (when (char< (char s1 i) (char s2 i))
35                  (return-from string< i))
36                (when (and (= i (1- len-1)) (> len-2 len-1))
37                  (return-from string< (1+ i))))))))
38
39 (define-setf-expander char (string index)
40   (let ((g!string (gensym))
41         (g!index (gensym))
42         (g!value (gensym)))
43     (values (list g!string g!index)
44             (list string index)
45             (list g!value)
46             `(aset ,g!string ,g!index ,g!value)
47             `(char ,g!string ,g!index))))