[docs]classAll(AggregationPrimitive):"""Calculates if all values are 'True' in a list. Description: Given a list of booleans, return `True` if all of the values are `True`. Examples: >>> all = All() >>> all([False, False, False, True]) False """name="all"input_types=[[ColumnSchema(logical_type=Boolean)],[ColumnSchema(logical_type=BooleanNullable)],]return_type=ColumnSchema(logical_type=Boolean)stack_on_self=Falsedescription_template="whether all of {} are true"defget_function(self):returnnp.all