Use Float.{to_string/1, to_charlist/1} when possible #13898
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a suggestion to use the
Float.to_string/1
andFloat.to_charlist/1
functions in theString.Chars
andList.Chars
protocols. Furthermore, it also changesInspect
to useFloat.to_charlist/1
. The reasoning behind is consistency, so the functions match the others in the protocols.This PR, updates the functions in the same places as updated in #13046 except for in Float itself.
The changes all refer to these lines in Float:
elixir/lib/elixir/lib/float.ex
Line 602 in ed75e60
elixir/lib/elixir/lib/float.ex
Line 631 in ed75e60