Hide some internal functions
This commit is contained in:
parent
9c6beeac13
commit
3268d2d08e
1 changed files with 2 additions and 2 deletions
|
@ -65,11 +65,11 @@ defmodule RDF.Double do
|
|||
def canonical_lexical(value), do: to_string(value)
|
||||
|
||||
|
||||
def decimal_form(float) when is_float(float) do
|
||||
defp decimal_form(float) when is_float(float) do
|
||||
to_string(float)
|
||||
end
|
||||
|
||||
def exponential_form(float) when is_float(float) do
|
||||
defp exponential_form(float) when is_float(float) do
|
||||
# Can't use simple %f transformation due to special requirements from
|
||||
# N3 tests in representation
|
||||
[i, f, e] =
|
||||
|
|
Loading…
Reference in a new issue