Hide some internal functions

This commit is contained in:
Marcel Otto 2018-09-17 02:08:42 +02:00
parent 9c6beeac13
commit 3268d2d08e

View file

@ -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] =