Initial commit
This commit is contained in:
commit
a6272848f9
379 changed files with 74829 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
-record(decode_error, {
|
||||
expected :: binary(),
|
||||
found :: binary(),
|
||||
path :: list(binary())
|
||||
}).
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
-record(decoder, {
|
||||
function :: fun((gleam@dynamic:dynamic_()) -> {any(),
|
||||
list(gleam@dynamic@decode:decode_error())})
|
||||
}).
|
||||
1
build/packages/gleam_stdlib/include/gleam@set_Set.hrl
Normal file
1
build/packages/gleam_stdlib/include/gleam@set_Set.hrl
Normal file
|
|
@ -0,0 +1 @@
|
|||
-record(set, {dict :: gleam@dict:dict(any(), list(nil))}).
|
||||
9
build/packages/gleam_stdlib/include/gleam@uri_Uri.hrl
Normal file
9
build/packages/gleam_stdlib/include/gleam@uri_Uri.hrl
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-record(uri, {
|
||||
scheme :: gleam@option:option(binary()),
|
||||
userinfo :: gleam@option:option(binary()),
|
||||
host :: gleam@option:option(binary()),
|
||||
port :: gleam@option:option(integer()),
|
||||
path :: binary(),
|
||||
'query' :: gleam@option:option(binary()),
|
||||
fragment :: gleam@option:option(binary())
|
||||
}).
|
||||
Loading…
Add table
Add a link
Reference in a new issue