Trait polars_core::chunked_array::ops::StrConcat   
source · pub trait StrConcat {
    // Required method
    fn str_concat(&self, delimiter: &str) -> Utf8Chunked;
}Available on crate feature 
concat_str only.Expand description
Concat the values into a string array.
Required Methods§
sourcefn str_concat(&self, delimiter: &str) -> Utf8Chunked
 
fn str_concat(&self, delimiter: &str) -> Utf8Chunked
Concat the values into a string array.
Arguments
- delimiter- A string that will act as delimiter between values.