gleam-lang / stdlib

🎁 Gleam's standard library
https://hexdocs.pm/gleam_stdlib/
Apache License 2.0
466 stars 168 forks source link

Add set.map(). #637

Closed jewelpit closed 3 months ago

jewelpit commented 3 months ago

I had initially thought of proposing also adding dict.map_keys() and then implementing set.map() in terms of that function, but as I thought about it more, I couldn't think of a strong reason to add that other than just doing it for completeness' sake, so I did it in terms of set.fold() instead.

Resolves #636.