public bool Equals()

in Runtime/Scripts/Proto/Tuningfork.cs [248:265]


    public bool Equals(Settings other) {
      if (ReferenceEquals(other, null)) {
        return false;
      }
      if (ReferenceEquals(other, this)) {
        return true;
      }
      if (!object.Equals(AggregationStrategy, other.AggregationStrategy)) return false;
      if(!histograms_.Equals(other.histograms_)) return false;
      if (BaseUri != other.BaseUri) return false;
      if (ApiKey != other.ApiKey) return false;
      if (DefaultFidelityParametersFilename != other.DefaultFidelityParametersFilename) return false;
      if (InitialRequestTimeoutMs != other.InitialRequestTimeoutMs) return false;
      if (UltimateRequestTimeoutMs != other.UltimateRequestTimeoutMs) return false;
      if (LoadingAnnotationIndex != other.LoadingAnnotationIndex) return false;
      if (LevelAnnotationIndex != other.LevelAnnotationIndex) return false;
      return true;
    }