any
any[IterableType: Iterable](iterable: IterableType) -> Bool where conforms_to(IterableType.IteratorType[False, iterable, origin_of(iterable)].Element, AnyType & ImplicitlyDestructible & Boolable)
Checks if all elements in the list are truthy.
Parameters:
- IterableType (
Iterable): The type of the iterable containingBoolableitems.
Args:
- iterable (
IterableType): The iterable to check.
Returns:
Bool: True if any element in the list is truthy, False otherwise.