From 4dc0d1854fa7dfc0229e27b6b69848564185e43b Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Tue, 17 Sep 2019 21:04:30 +0100 Subject: Rename stdlib native module --- gen/src/gleam@iodata.erl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'gen/src/gleam@iodata.erl') 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). -- cgit v1.2.3