fsprojects / FsHttp

A lightweight F# HTTP library by @SchlenkR and @dawedawe
https://fsprojects.github.io/FsHttp/
Apache License 2.0
424 stars 42 forks source link

Do ordinal string comparisons #144

Closed dawedawe closed 8 months ago

dawedawe commented 8 months ago

Using Ordinal is both faster and more correct as our intent is to do symbolic compares. See https://learn.microsoft.com/en-us/dotnet/standard/base-types/best-practices-strings for the full story.

SchlenkR commented 8 months ago

Thanks Dawe :) your work is highly appreciated as usual.