mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
removing string-split-right
This commit is contained in:
parent
2165f19af5
commit
c005459335
2 changed files with 1 additions and 4 deletions
|
@ -267,9 +267,6 @@
|
|||
(else
|
||||
(lp end i (cons (substring-cursor str sc end) res)))))))
|
||||
|
||||
(define (string-split-right str delim . o)
|
||||
#f)
|
||||
|
||||
(define (string-filter pred str . o)
|
||||
(let ((out (open-output-string)))
|
||||
(apply string-fold (lambda (ch acc) (if (pred ch) (write-char ch out))) #f str o)
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
string-fold string-fold-right
|
||||
string-for-each-cursor
|
||||
string-replicate string-count
|
||||
string-replace string-split string-split-right
|
||||
string-replace string-split
|
||||
string-filter string-remove)
|
||||
(import (scheme base)
|
||||
(scheme char) (scheme write)
|
||||
|
|
Loading…
Add table
Reference in a new issue