diff options
Diffstat (limited to 'gen/src/gleam@iodata.erl')
-rw-r--r-- | gen/src/gleam@iodata.erl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gen/src/gleam@iodata.erl b/gen/src/gleam@iodata.erl index cf7942e..b70ad78 100644 --- a/gen/src/gleam@iodata.erl +++ b/gen/src/gleam@iodata.erl @@ -4,25 +4,25 @@ -export([prepend/2, append/2, prepend_iodata/2, append_iodata/2, from_strings/1, concat/1, new/1, to_string/1, byte_size/1, from_float/1, lowercase/1, uppercase/1, reverse/1, split/2, replace/3, is_equal/2, is_empty/1]). prepend(A, B) -> - gleam__stdlib:iodata_prepend(A, B). + gleam_stdlib:iodata_prepend(A, B). append(A, B) -> - gleam__stdlib:iodata_append(A, B). + gleam_stdlib:iodata_append(A, B). prepend_iodata(A, B) -> - gleam__stdlib:iodata_prepend(A, B). + gleam_stdlib:iodata_prepend(A, B). append_iodata(A, B) -> - gleam__stdlib:iodata_append(A, B). + gleam_stdlib:iodata_append(A, B). from_strings(A) -> - gleam__stdlib:identity(A). + gleam_stdlib:identity(A). concat(A) -> - gleam__stdlib:identity(A). + gleam_stdlib:identity(A). new(A) -> - gleam__stdlib:identity(A). + gleam_stdlib:identity(A). to_string(A) -> erlang:iolist_to_binary(A). |