write_double() 공개 메소드

public write_double ( double d ) : void
d double
리턴 void
예제 #1
0
 /**
  * Convert this double to the equivalent Erlang external representation.
  *
  * @param buf
  *                an output stream to which the encoded value should be
  *                written.
  */
 public override void encode(OtpOutputStream buf)
 {
     buf.write_double(d);
 }