(value: ScalarValue, sep: &str)
| 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 { |