toAscList
O(n). Convert the map to a list of key/value pairs keys are in ascending order. Subject to list fusion.
> toAscList (fromList [(5,"a"), (3,"b")]) == [(3,"b"), (5,"a")]
O(n). Convert the set to an ascending list of elements. Subject to list fusion.
O(n). Convert the map to a list of key/value pairs keys are in ascending order. Subject to list fusion.
> toAscList (fromList [(5,"a"), (3,"b")]) == [(3,"b"), (5,"a")]
O(n). Convert the set to an ascending list of elements. Subject to list fusion.