core/com.tealium.prism.core.api.rules/Rule/Companion/all all @JvmStatic@SafeVarargsfun <T> all(vararg rules: Rule<T>): Rule<T>@JvmStaticfun <T> all(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 "and" of the given rules.ParametersrulesThe other Rules to evaluate.