BitsetsNET.RoaringBitset.Clone C# (CSharp) Метод

Clone() публичный Метод

Create a new bitset that is a deep copy of this one.
public Clone ( ) : IBitset
Результат IBitset
        public IBitset Clone()
        {
            RoaringBitset x = new RoaringBitset();
            x.containers = containers.Clone();
            return x;
        }