elems -array
O(n). Return all elements of the map in the ascending order of their keys. Subject to list fusion.
> elems (fromList [(5,"a"), (3,"b")]) == ["b","a"]
> elems empty == []
O(n). An alias of toAscList. The elements of a set in ascending order. Subject to list fusion.
O(n). Return all elements of the map in the ascending order of their keys. Subject to list fusion.
> elems (fromList [(5,"a"), (3,"b")]) == ["b","a"]
> elems empty == []
O(n). An alias of toAscList. The elements of a set in ascending order. Subject to list fusion.