groupOr / any.
Direct predicate — returns true when at least one passed boolean argument is strictly true.
/**
* @param bool ...$variables
* @return bool
*/
Comparisons\anyTrue(bool ...$variables): boolThis can be used to create a simple closure which can be used as a regular function.
var_dump(Comparisons\anyTrue(false, false, true)); // true
var_dump(Comparisons\anyTrue(false, false, false)); // false