Add() public method

public Add ( int el ) : void
el int
return void
Example #1
0
        public static BitSet of(int el)
        {
            BitSet s = new BitSet(el + 1);

            s.Add(el);
            return(s);
        }
Example #2
0
 public static BitSet of(int el)
 {
     BitSet s = new BitSet(el + 1);
     s.Add(el);
     return s;
 }