GetBits() public method

public GetBits ( ) : int
return int
Esempio n. 1
0
 /**
  * Append mode info. On success, store the result in "bits".
  */
 private static void AppendModeInfo(Mode mode, BitVector bits)
 {
     bits.AppendBits(mode.GetBits(), 4);
 }
Esempio n. 2
0
 /**
  * Append mode info. On success, store the result in "bits".
  */
 static void AppendModeInfo(Mode mode, BitVector bits) {
     bits.AppendBits(mode.GetBits(), 4);
 }