aboutsummaryrefslogtreecommitdiff
path: root/gen/src
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2019-12-16 19:11:48 +0000
committerLouis Pilfold <louis@lpil.uk>2019-12-16 19:11:48 +0000
commita3226660960fd25fe0fa1ebe36704d87cc537b42 (patch)
treea5185c9c72715e10e39c15baaa3bf4214a41987e /gen/src
parentf59beba51db3fe1cb36dd8d1231c6e437f65a86a (diff)
downloadgleam_stdlib-a3226660960fd25fe0fa1ebe36704d87cc537b42.tar.gz
gleam_stdlib-a3226660960fd25fe0fa1ebe36704d87cc537b42.zip
Remove old generated files
Diffstat (limited to 'gen/src')
-rw-r--r--gen/src/gleam@any.erl40
1 files changed, 0 insertions, 40 deletions
diff --git a/gen/src/gleam@any.erl b/gen/src/gleam@any.erl
deleted file mode 100644
index 2cedd83..0000000
--- a/gen/src/gleam@any.erl
+++ /dev/null
@@ -1,40 +0,0 @@
--module(gleam@any).
--compile(no_auto_import).
-
--export([from/1, unsafe_coerce/1, string/1, int/1, float/1, atom/1, bool/1, thunk/1, list/2, field/2]).
-
-from(A) ->
- gleam_stdlib:identity(A).
-
-unsafe_coerce(A) ->
- gleam_stdlib:identity(A).
-
-string(A) ->
- gleam_stdlib:decode_string(A).
-
-int(A) ->
- gleam_stdlib:decode_int(A).
-
-float(A) ->
- gleam_stdlib:decode_float(A).
-
-atom(A) ->
- gleam_stdlib:decode_atom(A).
-
-bool(A) ->
- gleam_stdlib:decode_bool(A).
-
-thunk(A) ->
- gleam_stdlib:decode_thunk(A).
-
-list_any(A) ->
- gleam_stdlib:decode_list(A).
-
-list(Any, DecoderType) ->
- gleam@result:then(
- list_any(Any),
- fun(Capture1) -> gleam@list:traverse(Capture1, DecoderType) end
- ).
-
-field(A, B) ->
- gleam_stdlib:decode_field(A, B).