OrInPlace() public méthode

public OrInPlace ( BitSet a ) : void
a BitSet
Résultat void
Exemple #1
0
        /* Return this | a in a new set. */

        public virtual BitSet Or(BitSet a)
        {
            BitSet s = (BitSet)this.Clone();

            s.OrInPlace(a);
            return(s);
        }