Expand description
§debug-map-sorted
An implementation of Debug on a wrapper for HashMap
which displays the output in sorted order.
See SortedHashMapDebugOutput
for more info.
§Example usage
use debug_map_sorted::SortedOutputExt;
let data: HashMap<usize, &'static str> = [(0, "zero"), (1, "one"), (2, "two")]
.into_iter().collect();
assert_eq!(
format!("{:?}", data.sorted_debug()),
"{0: \"zero\", 1: \"one\", 2: \"two\"}"
);
Structs§
- Sorted
Hash MapDebug Output - A wrapper for
HashMap
which sorts itself forDebug
output
Traits§
- Sorted
Output Ext - An extension trait for easier production of
SortedHashMapDebugOutput
values