[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

naming of string-trim, etc.

This page is part of the web mail archives of SRFI 13 from before July 7th, 2015. The new archives for SRFI 13 contain all messages, not just those from before July 7th, 2015.



I'd like to propose a change that has no semantic effect on the SRFI,
just renaming of string-trim, string-trim-right and string-trim-both.

I think string-trim-both would be the most commonly-used of the three;
it should be named string-trim.

The string-trim-right procedure should be renamed because of the
left-to-right language assumption.

CURRENT		       PROPOSED
string-trim	       string-trim-head
string-trim-right      string-trim-tail
string-trim-both       string-trim

Note that in MIT Scheme (string-trim " hi ") ==> "hi".