|
Description
|
A DESCRIPTION OF THE REQUEST :
CharBuffer needs a put() method that takes a CharSequence.
JUSTIFICATION :
Right now it has a put(CharBuffer src) and put(String src), but no put(StringBuffer src) method or put(CharSequence src). If one has a CharSequence or a StringBuffer, it first has to turn them into a String before it can be put into a buffer. The specific methods for CharBuffer, String, and StringBuffer are really unecessary if there is a put(CharSequence src), unless they could be implemented more efficiently by customer the real type of a CharSequence.
(Review ID: 185395)
======================================================================
|