예제 #1
0
 /*
  * Function: mimic
  */
 public void mimic(CharSet s)
 {
     compflag = s.compflag;
     set      = new BitSet(s.set);
 }
예제 #2
0
파일: BitSet.cs 프로젝트: maxild/CsLex
 public BitSetEnum(BitSet x)
 {
     p = x;
 }
예제 #3
0
 /*
  * Function: CharSet
  */
 public CharSet()
 {
     set      = new BitSet();
     compflag = false;
 }