Searched defs:ObjectIntPair (Results 1 – 2 of 2) sorted by relevance
18 internal struct ObjectIntPair<T> : IEquatable<ObjectIntPair<T>> where T : class struct20 private readonly int number;21 private readonly T obj;23 internal ObjectIntPair(T obj, int number) in ObjectIntPair() argument29 public bool Equals(ObjectIntPair<T> other) in Equals()35 public override bool Equals(object obj) => obj is ObjectIntPair<T> pair && Equals(pair);37 public override int GetHashCode() in GetHashCode()
186 private static final class ObjectIntPair { class in ExtensionRegistryLite190 ObjectIntPair(final Object object, final int number) { in ObjectIntPair() method in ExtensionRegistryLite.ObjectIntPair