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
Generalize fromListSV/fromListSM to accept a parameter to either overwrite or apply some fold over repeated elements.
The current behaviour is overwriting.
Generalize
fromListSV
/fromListSM
to accept a parameter to either overwrite or apply some fold over repeated elements.The current behaviour is overwriting.
Example of new behaviour:
fromListSV (FoldRepeated (+) 0) [(1, 1), (2, 3), (2, 5)] == fromListSV OverwriteRepeated [(1, 1), (2, 8)]
The text was updated successfully, but these errors were encountered: