[docs]classEqualScalar(TransformPrimitive):"""Determines if values in a list are equal to a given scalar. Description: Given a list of values and a constant scalar, determine whether each of the values is equal to the scalar. Examples: >>> equal_scalar = EqualScalar(value=2) >>> equal_scalar([3, 1, 2]).tolist() [False, False, True] """name="equal_scalar"input_types=[ColumnSchema()]return_type=ColumnSchema(logical_type=BooleanNullable)