Void traverse(Bool(a, Int) block, HashSet<a> set)
Arguments
block: The block of code to execute for each set element.set: The HashSet to traverse
Usage
Used by for loops to traverse HashSet data structure. It is unlikely that you will need to call this function directly.
The order in which a HashSet is traversed is undefined.