It would be nice if there was support for the style shown in the regular Polars .hash() docs which looks like this:
df = pl.DataFrame(
{
"a": [1, 2, None],
"b": ["x", None, "z"],
}
)
df.with_columns(pl.all().hash(10, 20, 30, 40))
That is, it would be nice if there was a polars_hash.all(), so that you can do polars_hash.all().nchash.wyhash()) (or similar).