Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 1630)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#1575 fixed utf8-srfi-13-string-every returns #f with empty string andyjpb
Description

(string-every (constantly 'hello) "") returns #t with the regular version of string-every but #f with the utf8-srfi-13 version.

#1253 fixed utf8-srfi-13 string-map! does not update in-place Alex Shinn Caolan McMahon
Description
(use srfi-13)
(define str "foo")
(string-map! (lambda (c) #\x) str) ;; => "xxx"
str ;; => "xxx"
(use utf8-srfi-13)
(define str "foo")
(string-map! (lambda (c) #\x) str) ;; => "xxx"
str ;; => "foo"
#1252 fixed utf8-srfi-13 string-index-right treats bounds differently to srfi-13 Alex Shinn Caolan McMahon
Description
(use srfi-13)
(string-index-right "foo" #\@ 0 0)
;; => #f

(use utf8-srfi-13)
(string-index-right "foo" #\@ 0 0)

Error: index out of range
"foo"
-1

	Call history:

	<syntax>	  (string-index-right "foo" #\@ 0 0)
	<eval>	  (string-index-right "foo" #\@ 0 0)	<--
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.