next | previous | forward | backward | up | top | index | toc | home

all(HashTable,Function) -- whether all key/value pairs in a hash table satisfy a specified condition

Synopsis

Description

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

See also