aboutsummaryrefslogtreecommitdiff
path: root/gen/src/gleam@iodata.erl
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2019-09-17 21:04:30 +0100
committerLouis Pilfold <louis@lpil.uk>2019-09-17 22:20:26 +0100
commit4dc0d1854fa7dfc0229e27b6b69848564185e43b (patch)
tree830ff699eb31d61e870d83bbe5ae63752b2c0625 /gen/src/gleam@iodata.erl
parent7ef601e5f01d3f63d93a88675754bd745267d71a (diff)
downloadgleam_stdlib-4dc0d1854fa7dfc0229e27b6b69848564185e43b.tar.gz
gleam_stdlib-4dc0d1854fa7dfc0229e27b6b69848564185e43b.zip
Rename stdlib native module
Diffstat (limited to 'gen/src/gleam@iodata.erl')
-rw-r--r--gen/src/gleam@iodata.erl14
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).