Given:
f1, f2 :: Fold Box (HashSet Thing)
how do I write a fold that focuses the Things that are in f1 but not in f2? It would (of course) be the same Box, but f1 and f2 filter its contents differently.
I can see that filtered
and hasn't
might come into it and HashSet.difference
would do the gruntwork, but I can't quite figure out the plumbing.