core/com.tealium.prism.core.api.rules/Rule/Companion/any any @JvmStatic@SafeVarargsfun <T> any(vararg rules: Rule<T>): Rule<T>@JvmStaticfun <T> any(rules: List<Rule<T>>): Rule<T>Returns a new Rule that is the logical equivalent of the following operation:rules[0] || rules[1] || ...Content copied to clipboardReturnA new Rule representing the logical "or" of the given rules.ParametersrulesThe other Rules to evaluate.