コード例 #1
0
ファイル: BitList.java プロジェクト: rcerri/Clus-Hyper-Code
 public final void copy(BitList other) {
   int olen = other.m_Bits.length;
   if (m_Bits == null || olen != m_Bits.length) {
     m_Bits = new long[olen];
     m_Size = other.size();
   }
   System.arraycopy(other.m_Bits, 0, m_Bits, 0, olen);
 }