Ejemplo n.º 1
0
        public static BitSet of(int el)
        {
            var s = new BitSet(el + 1);

            s.add(el);
            return(s);
        }
Ejemplo n.º 2
0
 public static BitSet of(int el)
 {
     var s = new BitSet(el + 1);
     s.add(el);
     return s;
 }