diff options
author | Louis Pilfold <louis@lpil.uk> | 2019-09-17 21:04:30 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-09-17 22:20:26 +0100 |
commit | 4dc0d1854fa7dfc0229e27b6b69848564185e43b (patch) | |
tree | 830ff699eb31d61e870d83bbe5ae63752b2c0625 /gen/src/gleam@any.erl | |
parent | 7ef601e5f01d3f63d93a88675754bd745267d71a (diff) | |
download | gleam_stdlib-4dc0d1854fa7dfc0229e27b6b69848564185e43b.tar.gz gleam_stdlib-4dc0d1854fa7dfc0229e27b6b69848564185e43b.zip |
Rename stdlib native module
Diffstat (limited to 'gen/src/gleam@any.erl')
-rw-r--r-- | gen/src/gleam@any.erl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gen/src/gleam@any.erl b/gen/src/gleam@any.erl index 4b2d17d..b55ce9f 100644 --- a/gen/src/gleam@any.erl +++ b/gen/src/gleam@any.erl @@ -4,31 +4,31 @@ -export([from/1, unsafe_coerce/1, string/1, int/1, float/1, atom/1, bool/1, thunk/1, list/2, pair/1, field/2]). from(A) -> - gleam__stdlib:identity(A). + gleam_stdlib:identity(A). unsafe_coerce(A) -> - gleam__stdlib:identity(A). + gleam_stdlib:identity(A). string(A) -> - gleam__stdlib:decode_string(A). + gleam_stdlib:decode_string(A). int(A) -> - gleam__stdlib:decode_int(A). + gleam_stdlib:decode_int(A). float(A) -> - gleam__stdlib:decode_float(A). + gleam_stdlib:decode_float(A). atom(A) -> - gleam__stdlib:decode_atom(A). + gleam_stdlib:decode_atom(A). bool(A) -> - gleam__stdlib:decode_bool(A). + gleam_stdlib:decode_bool(A). thunk(A) -> - gleam__stdlib:decode_thunk(A). + gleam_stdlib:decode_thunk(A). list_any(A) -> - gleam__stdlib:decode_list(A). + gleam_stdlib:decode_list(A). list(Any, Decode) -> gleam@result:then( @@ -37,7 +37,7 @@ list(Any, Decode) -> ). pair(A) -> - gleam__stdlib:decode_pair(A). + gleam_stdlib:decode_pair(A). field(A, B) -> - gleam__stdlib:decode_field(A, B). + gleam_stdlib:decode_field(A, B). |