예제 #1
0
파일: Atom.cs 프로젝트: trompa/jungerl
 /*
  * Convert this atom to the equivalent Erlang external representation.
  *
  * @param buf an output stream to which the encoded atom should be
  * written.
  **/
 public override void  encode(OtpOutputStream buf)
 {
     buf.write_atom(this.atom);
 }
예제 #2
0
파일: Atom.cs 프로젝트: e42s/jungerl
 /*
 * Convert this atom to the equivalent Erlang external representation.
 *
 * @param buf an output stream to which the encoded atom should be
 * written.
 **/
 public override void encode(OtpOutputStream buf)
 {
     buf.write_atom(this.atom);
 }