nushell/crates/nu_plugin_polars
Matthias Meschede 88bbe4abaa
Add Xor to polars plugin nu_expressions (#15249)
solution for #15242 ,  based on PR #15248 .

Allows doing this:

```
~/Projects/nushell> [[a, b]; [1., 2.], [3.,3.], [4., 6.]] | polars into-df | polars filter (((polars col a) < 2) xor ((polars col b) > 5))
╭───┬──────┬──────╮
│ # │  a   │  b   │
├───┼──────┼──────┤
│ 0 │ 1.00 │ 2.00 │
│ 1 │ 4.00 │ 6.00 │
╰───┴──────┴──────╯
```
2025-03-05 08:03:35 -08:00
..
src Add Xor to polars plugin nu_expressions (#15249) 2025-03-05 08:03:35 -08:00
Cargo.toml move to polars bigidx (#15177) 2025-02-25 17:29:56 -06:00
LICENSE Move dataframes support to a plugin (#12220) 2024-04-09 19:31:43 -05:00