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
Mneme currently only produces patterns for the returned value, but there are situations where the value doesn’t produce a desired pattern. MapSet comes to mind. For example, this match pattern is invalid:
MapSet.new([1,2,3])=MapSet.new([1,2,3])# would have to be something like%MapSet{…}=MapSet.new(…)
These cases could be identified and simple transformations offered as suggestions. For example:
auto_assertsome_set()# could suggestauto_assert[1,2,3]<-some_set()|>MapSet.to_list()
The text was updated successfully, but these errors were encountered:
Mneme currently only produces patterns for the returned value, but there are situations where the value doesn’t produce a desired pattern. MapSet comes to mind. For example, this match pattern is invalid:
These cases could be identified and simple transformations offered as suggestions. For example:
The text was updated successfully, but these errors were encountered: