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
Describe the solution you'd like
Right now, I'm using EquatableArray<> in the models to support equality. However, I'm not sure if two EAs, one with A, B, C and the other with C, B, A would be considered equal. If not, then I should sort the member arrays so that the results are always the same. Note that this means I would not sort things like parameters because that order must be preserved.
BTW I have a comment in the constructor for TypeMockModel talking about this issue as well.
The text was updated successfully, but these errors were encountered:
Describe the solution you'd like
Right now, I'm using
EquatableArray<>
in the models to support equality. However, I'm not sure if two EAs, one withA, B, C
and the other withC, B, A
would be considered equal. If not, then I should sort the member arrays so that the results are always the same. Note that this means I would not sort things like parameters because that order must be preserved.BTW I have a comment in the constructor for
TypeMockModel
talking about this issue as well.The text was updated successfully, but these errors were encountered: