macro_rules! assert_sorted_keys {
    ( $key:expr, ) => { ... };
    ( $key1:expr, $key2:expr, $( $keys:expr, )* ) => { ... };
}
Expand description

Assert that the keys in a vector of key-value pairs are in canonical order.