Timothy Beyer <[email protected]> writes: > I just found out today that the utf8 version of srfi-13 > doesn't have or export string-join. (though the non-utf8 > version does) I'll probably roll my own version for my own > use until it is added, but I don't know how to write one > that is properly utf8-aware, so I don't think it would be > worth submitting.
(define utf8-string-join string-join) If the procedure does no indexing on characters then the utf8 version is the same as the normal version. -- Alex _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
