Trait polars::chunked_array::ops::StrConcat[][src]

pub trait StrConcat {
    fn str_concat(&self, delimiter: &str) -> ChunkedArray<Utf8Type>;
}
Expand description

Concat the values into a string array.

Required methods

Concat the values into a string array.

Arguments
  • delimiter - A string that will act as delimiter between values.

Implementors