BitsetsNET.BitsetContainer.IAnd C# (CSharp) Method

IAnd() public method

Performs an "in-place" intersection with an ArrayContainer. Since no in-place operation is actually possible, this method defaults to calling ArrayContainer's and() method with this as input.
public IAnd ( ArrayContainer other ) : Container
other ArrayContainer the ArrayContainer to intersect
return Container
        public override Container IAnd(ArrayContainer other)
        {
            return other.And(this); // No in-place possible
        }

Same methods

BitsetContainer::IAnd ( BitsetContainer other ) : Container