diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-11-24 22:13:34 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-11-25 11:22:45 +0000 |
commit | 69b0e8e1abb78db55cbdbd8db3ba4fe75b743e60 (patch) | |
tree | 47eec11c69fecb4033b33bd0987992e51b41f49c /gen/src/gleam@any.erl | |
parent | 09bd0a89dd80500d99589646a738c45c9537091a (diff) | |
download | gleam_stdlib-69b0e8e1abb78db55cbdbd8db3ba4fe75b743e60.tar.gz gleam_stdlib-69b0e8e1abb78db55cbdbd8db3ba4fe75b743e60.zip |
Update for Gleam v0.5
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). |