/// <summary> /// Create a new bitset that is a deep copy of this one. /// </summary> /// <returns>The cloned bitset</returns> public IBitset Clone() { RoaringBitset x = new RoaringBitset(); x.containers = containers.Clone(); return(x); }