internal static java.nio.ReadOnlyCharArrayBuffer copy(java.nio.CharArrayBuffer other
			, int markOfOther)
		{
			java.nio.ReadOnlyCharArrayBuffer buf = new java.nio.ReadOnlyCharArrayBuffer(other
				.capacity(), other.backingArray, other.offset);
			buf._limit = other._limit;
			buf._position = other.position();
			buf._mark = markOfOther;
			return buf;
		}
Beispiel #2
0
 internal static java.nio.ReadOnlyCharArrayBuffer copy(java.nio.CharArrayBuffer other
                                                       , int markOfOther)
 {
     java.nio.ReadOnlyCharArrayBuffer buf = new java.nio.ReadOnlyCharArrayBuffer(other
                                                                                 .capacity(), other.backingArray, other.offset);
     buf._limit    = other._limit;
     buf._position = other.position();
     buf._mark     = markOfOther;
     return(buf);
 }