-module(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) -> iodata:to_string(iodata:from_float(F)). ceiling(A) -> math:ceil(A). floor(A) -> math:floor(A). round(A) -> erlang:round(A). truncate(A) -> erlang:trunc(A).