Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module defines optics for constructing and manipulating finite
HashSet
s.
Documentation
setmapped :: (Eq b, Hashable b) => Setter (HashSet a) (HashSet b) a b Source #
This Setter
can be used to change the type of a HashSet
by mapping the
elements to new values.
Sadly, you can't create a valid Traversal
for a HashSet
,
but you can manipulate it by reading using folded
and
reindexing it via setmapped
.
>>>
over setmapped (+1) (HashSet.fromList [1,2,3,4])
fromList [2,3,4,5]