Returns a value of True if the named function fun returns a value of True for any argument supplied in the input list.
some? ( fun As Name, _ list As List ) As Boolean
Intent >some?(:empty?, {{1}, {:a}, {}, {:b}}) --> True
Intent >some?(:empty?, {{}, {:a}, {}, {:b}}) --> True
Intent >some?(:empty?, {{1}, {:a}, {2}, {:b}}) --> False
Intent >some?(:even?, {1, 2, 3, 4, 5}) --> True
Intent >some?(:even?, {1, 3, 5, 7, 9}) --> False
Viewing Details: