[top][index]
search for:

any -- whether an element satisfies a condition

any(v,f) -- yields the value true or false depending on whether any element v#i of v yields the value true when the predicate f is applied.

Works when v is a list, sequence, or hash table, but when v is an hash table, f is applied to each pair (k,x) consisting of a key k and a value x from v.

See also:

  • scan -- apply a function to each element
  • apply -- apply a function to each element
  • select -- select elements from a list or hash table
  • all -- whether all elements satisfy a condition
  • member -- test membership in a list
  • Ways to use any :

  • any(BasicList,Function)
  • any(HashTable,Function)

  • [top][index]
    search for: