polars.Series.flags# property Series.flags: dict[str, bool][source]# Get flags that are set on the Series. Examples >>> s = pl.Series("a", [1, 2, 3]) >>> s.flags {'SORTED_ASC': False, 'SORTED_DESC': False}