polars.Expr.forward_fill# Expr.forward_fill(limit: int | None = None) → Expr[source]# Fill missing values with the last non-null value. This is an alias of .fill_null(strategy="forward"). Parameters: limitThe number of consecutive null values to forward fill. See also backward_fill fill_null shift