diff options
Diffstat (limited to 'gen/src/std@float.erl')
-rw-r--r-- | gen/src/std@float.erl | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gen/src/std@float.erl b/gen/src/std@float.erl deleted file mode 100644 index c627707..0000000 --- a/gen/src/std@float.erl +++ /dev/null @@ -1,22 +0,0 @@ --module(std@float). --compile(no_auto_import). - --export([parse/1, to_string/1, ceiling/1, floor/1, round/1, truncate/1]). - -parse(A) -> - gleam__stdlib:parse_float(A). - -to_string(F) -> - std@iodata:to_string(std@iodata:from_float(F)). - -ceiling(A) -> - math:ceil(A). - -floor(A) -> - math:floor(A). - -round(A) -> - erlang:round(A). - -truncate(A) -> - erlang:trunc(A). |