-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add numeric conversions #26
Comments
Hi, i implemented stoi can i open pr for it? |
@abel-mak sure! |
@unterumarmung Hey, i didn't use from_chars in the implementation, must i use it? |
@abel-mak
|
You can open the PR and I will take a look what have so far |
@unterumarmung this what i've done so far |
@abel-mak I've looked on what you already written
|
You can open the PR: it's easier to review code with opened pull request |
Also, there's a tradeoff to be made with C++17, we either should:
There is no tradeoff in C++20 since we can distinguish run-time and compile-time with |
@GeorgyFirsov @DymOK93 What do you think about all that (the code and the tradeoff)? |
|
@unterumarmung hey, i opened PR and tried to add some changes from what you said about rules. |
Suggested API:
Proposed implementation: using
to_chars
andfrom_chars
from<charconv>
Known issues: cannot be really
constexpr
The text was updated successfully, but these errors were encountered: