示例#1
0
 public bool Equals(Record Value)
 {
     this._eTicks++;
     return(Record.Equals(this._Value, this._Key, Value, this._Key));
 }
示例#2
0
 public int CompareTo(Record Value)
 {
     this._cTicks++;
     return(Record.Compare(this._Value, Value));
 }
示例#3
0
 public RecordSeeker(Key Key, Record Value)
 {
     this._Key   = Key;
     this._Value = Value;
 }
示例#4
0
 public int GetHashCode(Record A)
 {
     return(A.GetHashCode(this._RightKey));
 }
示例#5
0
 public bool Equals(Record A, Record B)
 {
     this._eTicks++;
     return(Record.Equals(A, this._LeftKey, B, this._RightKey));
 }
示例#6
0
 public int Compare(Record A, Record B)
 {
     this._cTicks++;
     return(Record.Compare(A, this._LeftKey, B, this._RightKey));
 }