polars not for dataframe

Inverts boolean mask.

Signature

> polars not {flags}

Input/output types:

inputoutput
anyany

Examples

Inverts boolean mask

> [true false true] | polars into-df | polars not
╭───┬───────╮
 # │   0   │
├───┼───────┤
 0 false
 1 true
 2 false
╰───┴───────╯