CompareFold: A Highly Performant, Case-Insensitive String Sort
https://blog.thecodeteam.com/2017/10/24/go-highly-performant-case-insensitive-string-sort/
While the Go standard library makes sorting slices of strings in a case-sensitive manner a trivial operation, what does a developer do when case-insensitivity is required? This blog post outlines why the common approach to sorting strings in a case-insensitive manner does not scale and provides a highly performant, case-insensitive, string sort solution. Sorting String …
https://blog.thecodeteam.com/2017/10/24/go-highly-performant-case-insensitive-string-sort/
While the Go standard library makes sorting slices of strings in a case-sensitive manner a trivial operation, what does a developer do when case-insensitivity is required? This blog post outlines why the common approach to sorting strings in a case-insensitive manner does not scale and provides a highly performant, case-insensitive, string sort solution. Sorting String …