Пример #1
0
		internal static java.nio.ReadOnlyFloatArrayBuffer copy(java.nio.FloatArrayBuffer 
			other, int markOfOther)
		{
			java.nio.ReadOnlyFloatArrayBuffer buf = new java.nio.ReadOnlyFloatArrayBuffer(other
				.capacity(), other.backingArray, other.offset);
			buf._limit = other._limit;
			buf._position = other.position();
			buf._mark = markOfOther;
			return buf;
		}
 internal static java.nio.ReadOnlyFloatArrayBuffer copy(java.nio.FloatArrayBuffer
                                                        other, int markOfOther)
 {
     java.nio.ReadOnlyFloatArrayBuffer buf = new java.nio.ReadOnlyFloatArrayBuffer(other
                                                                                   .capacity(), other.backingArray, other.offset);
     buf._limit    = other._limit;
     buf._position = other.position();
     buf._mark     = markOfOther;
     return(buf);
 }