You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.7 KiB
35 lines
1.7 KiB
# FastDoubleParser
|
|
|
|
This is a Java port of Daniel Lemire's fast_float project.
|
|
This project provides parsers for double, float, BigDecimal and BigInteger values.
|
|
|
|
## Copyright
|
|
|
|
Copyright © 2023 Werner Randelshofer, Switzerland.
|
|
|
|
## Licensing
|
|
|
|
This code is licensed under MIT License.
|
|
https://github.com/wrandelshofer/FastDoubleParser/blob/522be16e145f43308c43b23094e31d5efcaa580e/LICENSE
|
|
(The file 'LICENSE' is included in the sources and classes Jar files that are released by this project
|
|
- as is required by that license.)
|
|
|
|
Some portions of the code have been derived from other projects.
|
|
All these projects require that we include a copyright notice, and some require that we also include some text of their
|
|
license file.
|
|
|
|
fast_double_parser, Copyright (c) 2022 Daniel Lemire. Apache 2.0 License.
|
|
https://github.com/fastfloat/fast_float
|
|
https://github.com/fastfloat/fast_float/blob/dc88f6f882ac7eb8ec3765f633835cb76afa0ac2/LICENSE-APACHE
|
|
|
|
fast_float, Copyright (c) 2021 The fast_float authors. Apache 2.0 License.
|
|
https://github.com/fastfloat/fast_float
|
|
https://github.com/lemire/fast_double_parser/blob/07d9189a8fb815fe800cb15ca022e7a07093236e/LICENSE
|
|
|
|
bigint, Copyright 2020 Tim Buktu. 2-clause BSD License.
|
|
https://github.com/tbuktu/bigint/tree/floatfft
|
|
https://github.com/tbuktu/bigint/blob/617c8cd8a7c5e4fb4d919c6a4d11e2586107f029/LICENSE
|
|
https://github.com/wrandelshofer/FastDoubleParser/blob/39e123b15b71f29a38a087d16a0bc620fc879aa6/bigint-LICENSE
|
|
(We only use those portions of the bigint project that can be licensed under 2-clause BSD License.)
|
|
(The file 'bigint-LICENSE' is included in the sources and classes Jar files that are released by this project
|
|
- as is required by that license.) |