gitextract_6r9e4u6m/ ├── .dockerignore ├── .gitattributes ├── .github/ │ └── workflows/ │ └── dotnet.yml ├── .gitignore ├── .vscode/ │ └── tasks.json ├── Benchmark/ │ ├── Benchmark.csproj │ ├── FastParserBenchmark.cs │ ├── MFloatPersecColumn.cs │ └── data/ │ ├── canada.txt │ ├── mesh.txt │ └── synthetic.txt ├── BenchmarkHandCoded/ │ ├── BenchmarkHandCoded.csproj │ ├── Dockerfile │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ └── data/ │ ├── canada.txt │ ├── mesh.txt │ └── synthetic.txt ├── LICENSE ├── NugetDoc.md ├── README.md ├── TestcsFastFloat/ │ ├── BaseTestClass.cs │ ├── Basic/ │ │ ├── BasicTests.cs │ │ ├── TestDoubleParser.ParseDouble_CharConsumed_Works_Scenarios.approved.txt │ │ ├── TestDoubleParser.ParseDouble_charConsumed_WholeString.approved.txt │ │ ├── TestDoubleParser.ParseNumberString_Works_Scnenarios.approved.txt │ │ ├── TestDoubleParser.ParseNumber_Works_Scnenarios.approved.txt │ │ ├── TestDoubleParser.cs │ │ ├── TestFloatParser.LeadingZeros.approved.txt │ │ ├── TestFloatParser.ParseNumberString_Works_Scnenarios.approved.txt │ │ ├── TestFloatParser.ParseNumber_Works_Scenarios.approved.txt │ │ ├── TestFloatParser.ParseNumber_Works_Scnenarios.approved.txt │ │ ├── TestFloatParser.cs │ │ └── TestSIMD.cs │ ├── Exaustive/ │ │ └── ExaustiveTests.cs │ ├── TestcsFastFloat.csproj │ ├── data_files/ │ │ ├── freetype-2-7.txt │ │ ├── google-double-conversion.txt │ │ ├── google-wuffs.txt │ │ ├── ibm-fpgen.txt │ │ ├── lemire-fast-double-parser.txt │ │ ├── lemire-fast-float.txt │ │ ├── more-test-cases.txt │ │ ├── remyoudompheng-fptest-0.txt │ │ ├── remyoudompheng-fptest-1.txt │ │ ├── remyoudompheng-fptest-2.txt │ │ ├── remyoudompheng-fptest-3.txt │ │ ├── tencent-rapidjson.txt │ │ └── ulfjack-ryu.txt │ ├── strtod_tests/ │ │ ├── Strtod_tests.cs │ │ ├── Strtod_tests.strtod_tests_file.ForScenario.5.0.approved.txt │ │ ├── Strtod_tests.strtod_tests_file.ForScenario.8.0.approved.txt │ │ ├── Strtod_tests.strtod_tests_file.ForScenario.9.0.approved.txt │ │ ├── Strtod_tests.strtod_tests_file.approved.txt │ │ └── strtod_cases.txt │ └── suppl_tests/ │ └── SupplFilesTest.cs ├── benchmark.docker ├── benchmark_handcoded.docker ├── csFastFloat/ │ ├── .editorconfig │ ├── AssemblyInfo.cs │ ├── Constants/ │ │ ├── Constants.cs │ │ ├── DoubleBinaryConstants.cs │ │ └── FloatBinaryFormat.cs │ ├── FastDoubleParser.cs │ ├── FastFloatParser.cs │ ├── Structures/ │ │ ├── AdjustedMantissa.cs │ │ ├── DecimalInfo.cs │ │ ├── DigitsBuffer.cs │ │ ├── EnumExtensions.cs │ │ ├── ParsedNumberString.cs │ │ └── value128.cs │ ├── Utils/ │ │ └── Utils.cs │ ├── csFastFloat.csproj │ ├── csFastFloat.xml │ └── docs/ │ └── readme.md └── csFastFloat.sln