public static bool Equals(Db4objects.Db4o.Internal.Btree.BTreePointer x, Db4objects.Db4o.Internal.Btree.BTreePointer
                           y)
 {
     if (x == null)
     {
         return(y == null);
     }
     return(x.Equals(y));
 }
示例#2
0
 public static bool Equals(BTreePointer x, BTreePointer
                           y)
 {
     if (x == null)
     {
         return(y == null);
     }
     return(x.Equals(y));
 }
示例#3
0
 public static bool Equals(BTreePointer x, BTreePointer
     y)
 {
     if (x == null)
     {
         return y == null;
     }
     return x.Equals(y);
 }
示例#4
0
 public virtual bool IsEmpty()
 {
     return(BTreePointer.Equals(_first, _end));
 }
示例#5
0
 public virtual bool Adjacent(Db4objects.Db4o.Internal.Btree.BTreeRangeSingle range
                              )
 {
     return(BTreePointer.Equals(_end, range._first) || BTreePointer.Equals(range._end,
                                                                           _first));
 }
示例#6
0
 public virtual bool Adjacent(BTreeRangeSingle range
                              )
 {
     return(BTreePointer.Equals(_end, range._first) || BTreePointer.Equals(range._end,
                                                                           _first));
 }