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