all(H,f)
i1 : all(hashTable{1=>3, 2=>2, 3=>1}, (a,b) -> a == b) o1 = false
i2 : all(hashTable{1=>1, 2=>2, 3=>3}, (a,b) -> a == b) o2 = true