Function build_query_smartstring

Source
pub fn build_query_smartstring(params: &[(&str, &str)]) -> SmartString
Expand description

Build a query SmartString from key-value pairs (maintaining natural order) Optimized with SmallVec for stack allocation and minimal heap allocations Note: No sorting required - exchanges use natural parameter order for signatures

Performance improvement: Removed O(n log n) sorting, now O(n)