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