Example #1
0
 public static void Write(
     DataOutput output,
     IntSeqKeyTwo key)
 {
     output.WriteInt(key.One);
     output.WriteInt(key.Last);
 }
Example #2
0
 protected bool Equals(IntSeqKeyTwo other)
 {
     return One == other.One && Two == other.Two;
 }