MCPcopy Create free account
hub / github.com/apache/datafusion / display_comma_separated

Function display_comma_separated

datafusion/expr/src/expr.rs:1468–1474  ·  view source on GitHub ↗
(slice: &[T])

Source from the content-addressed store, hash-verified

1466}
1467
1468pub fn display_comma_separated<T>(slice: &[T]) -> String
1469where
1470 T: Display,
1471{
1472 use itertools::Itertools;
1473 slice.iter().map(|v| format!("{v}")).join(", ")
1474}
1475
1476/// Additional options for wildcards, e.g. Snowflake `EXCLUDE`/`RENAME` and Bigquery `EXCEPT`.
1477#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug, Default)]

Callers

nothing calls this directly

Calls 3

joinMethod · 0.45
mapMethod · 0.45
iterMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…