diff options
Diffstat (limited to 'gen/src/gleam@any.erl')
-rw-r--r-- | gen/src/gleam@any.erl | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gen/src/gleam@any.erl b/gen/src/gleam@any.erl index 9f2a8e6..2cedd83 100644 --- a/gen/src/gleam@any.erl +++ b/gen/src/gleam@any.erl @@ -1,7 +1,7 @@ -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, pair/1, field/2]). +-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). @@ -36,8 +36,5 @@ list(Any, DecoderType) -> fun(Capture1) -> gleam@list:traverse(Capture1, DecoderType) end ). -pair(A) -> - gleam_stdlib:decode_pair(A). - field(A, B) -> gleam_stdlib:decode_field(A, B). |