polars_plan::dsl::functions

Function repeat

Source
pub fn repeat<E: Into<Expr>>(value: E, n: Expr) -> Expr
Expand description

Create a column of length n containing n copies of the literal value.

Generally you won’t need this function, as lit(value) already represents a column containing only value whose length is automatically set to the correct number of rows.