コード例 #1
0
ファイル: BitStream.cs プロジェクト: replaysMike/AnyBitStream
 public void Write(Int4 value) => WriteInternal(value);
コード例 #2
0
 public bool Equals(Int4 other) => _value == other._value && !other._sign;
コード例 #3
0
 /// <summary>
 /// Write a 4 bit integer
 /// </summary>
 /// <param name="value"></param>
 public void Write(Int4 value) => BaseStream.Write(value);