aboutsummaryrefslogtreecommitdiff
path: root/gen/src/gleam@iodata.erl
diff options
context:
space:
mode:
authorPeter Saxton <peterhsaxton@gmail.com>2020-05-19 17:23:11 +0100
committerGitHub <noreply@github.com>2020-05-19 17:23:11 +0100
commita805e1fcdc2393aa789ef2dfb15a00669e3e079b (patch)
treecbad9cee5c94fcbbbf797869ed05d80107349c68 /gen/src/gleam@iodata.erl
parent88ab320ab452d3151f4f4b391dafd57af07e863c (diff)
downloadgleam_stdlib-a805e1fcdc2393aa789ef2dfb15a00669e3e079b.tar.gz
gleam_stdlib-a805e1fcdc2393aa789ef2dfb15a00669e3e079b.zip
Add gen to ignored files in git (#47)
Diffstat (limited to 'gen/src/gleam@iodata.erl')
-rw-r--r--gen/src/gleam@iodata.erl61
1 files changed, 0 insertions, 61 deletions
diff --git a/gen/src/gleam@iodata.erl b/gen/src/gleam@iodata.erl
deleted file mode 100644
index 5d0c434..0000000
--- a/gen/src/gleam@iodata.erl
+++ /dev/null
@@ -1,61 +0,0 @@
--module(gleam@iodata).
--compile(no_auto_import).
-
--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).
-
-append(A, B) ->
- gleam_stdlib:iodata_append(A, B).
-
-prepend_iodata(A, B) ->
- gleam_stdlib:iodata_prepend(A, B).
-
-append_iodata(A, B) ->
- gleam_stdlib:iodata_append(A, B).
-
-from_strings(A) ->
- gleam_stdlib:identity(A).
-
-concat(A) ->
- gleam_stdlib:identity(A).
-
-new(A) ->
- gleam_stdlib:identity(A).
-
-to_string(A) ->
- erlang:iolist_to_binary(A).
-
-byte_size(A) ->
- erlang:iolist_size(A).
-
-from_float(A) ->
- io_lib_format:fwrite_g(A).
-
-lowercase(A) ->
- string:lowercase(A).
-
-uppercase(A) ->
- string:uppercase(A).
-
-reverse(A) ->
- string:reverse(A).
-
-erl_split(A, B, C) ->
- string:split(A, B, C).
-
-split(Iodata, Pattern) ->
- erl_split(Iodata, Pattern, all).
-
-erl_replace(A, B, C, D) ->
- string:replace(A, B, C, D).
-
-replace(Iodata, Pattern, Substitute) ->
- erl_replace(Iodata, Pattern, Substitute, all).
-
-is_equal(A, B) ->
- string:equal(A, B).
-
-is_empty(A) ->
- string:is_empty(A).