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

Function some_str_sorted

datafusion/functions-aggregate/src/string_agg.rs:754–759  ·  view source on GitHub ↗
(value: ScalarValue, sep: &str)

Source from the content-addressed store, hash-verified

752 }
753
754 fn some_str_sorted(value: ScalarValue, sep: &str) -> String {
755 let value = some_str(value);
756 let mut parts: Vec<&str> = value.split(sep).collect();
757 parts.sort();
758 parts.join(sep)
759 }
760
761 fn str(value: ScalarValue) -> Result<Option<String>> {
762 match value {

Callers 2

no_duplicates_distinctFunction · 0.85
duplicates_distinctFunction · 0.85

Calls 5

some_strFunction · 0.85
collectMethod · 0.80
splitMethod · 0.45
sortMethod · 0.45
joinMethod · 0.45

Tested by 2

no_duplicates_distinctFunction · 0.68
duplicates_distinctFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…