any(list, test)any pass test Type: For any types t([t], (t) -> Boolean) -> Boolean

Returns true if the given function returns true for any item in the list.

If the list is empty, returns false.

ExamplesClick an example to insert it
any(["a", "b", "c"], (? = "b"))true
any([0, 1, 2, 3], (? > 5))false
any([], (? = 0))false