write_bitstr() 공개 메소드

public write_bitstr ( byte bin, int pad_bits ) : void
bin byte
pad_bits int
리턴 void
예제 #1
0
 /**
  * Convert this bitstr to the equivalent Erlang external representation.
  *
  * @param buf
  *                an output stream to which the encoded bitstr should be
  *                written.
  */
 public override void encode(OtpOutputStream buf)
 {
     buf.write_bitstr(bin, pad_bits);
 }