You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for brining this up. We make use of System.Object.ReferenceEquals which is being compared to LanguagePrimitives.PhysicalEquality in the discussion you posted.
Looking into the two arguments against Object.ReferenceEquals, both don't apply:
I don't see any case where we would want to compare the reference equality of e.g. a study and an assay. That would always return false and we would lose some type safety for absolutely no reason.
We use this function exclusively on classes, so the primititve type case does not apply.
https://stackoverflow.com/questions/39217116/how-do-i-check-for-reference-equality-in-f
The text was updated successfully, but these errors were encountered: