Proposing a function to convert a `Set` to a `Map`: ```purs annotateSet :: forall a b. (a -> b) -> Set a -> Map a b annotateSet f = mapWithIndex (\k _ -> f k) <<< toMap ``` Previously discussed in #31
Proposing a function to convert a
Setto aMap:Previously discussed in #31