public bool Equals()

in Runtime/Scripts/Proto/Tuningfork.cs [530:542]


        public bool Equals(Histogram other) {
          if (ReferenceEquals(other, null)) {
            return false;
          }
          if (ReferenceEquals(other, this)) {
            return true;
          }
          if (InstrumentKey != other.InstrumentKey) return false;
          if (BucketMin != other.BucketMin) return false;
          if (BucketMax != other.BucketMax) return false;
          if (NBuckets != other.NBuckets) return false;
          return true;
        }