Packages
gleam_stdlib
0.34.0
1.0.3
1.0.2
1.0.1
1.0.0
0.71.0
0.70.0
0.69.0
0.68.1
0.68.0
0.67.1
0.67.0
0.65.0
0.64.0
0.63.2
0.63.1
0.63.0
0.62.1
0.62.0
0.61.0
0.60.0
0.59.0
0.58.0
0.57.0
0.56.0
0.55.0
0.54.0
0.53.0
0.52.0
0.51.0
0.50.0
0.49.0
0.48.0
0.47.0
0.46.0
0.45.0
0.44.0
0.43.0
0.42.0
0.41.0
0.40.0
0.39.0
0.38.0
0.37.0
0.36.0
0.35.1
0.35.0
0.34.0
0.33.1
0.33.0
0.32.1
0.32.0
0.31.0
0.30.2
0.30.1
0.30.0
0.29.2
0.29.1
0.29.0
0.28.2
0.28.1
0.28.0
0.27.0
0.26.1
0.26.0
0.25.0
0.24.0
0.23.0
0.22.3
0.22.2
0.22.1
0.22.0
0.21.0
0.20.0
0.19.3
0.19.2
0.19.1
0.19.0
0.18.1
0.18.0
0.18.0-rc1
0.17.1
0.17.0
0.16.0
0.15.0
0.14.0
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.9.0
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.4.0-rc1
0.3.1
0.3.0
0.2.0
retired
A standard library for the Gleam programming language
Current section
Files
Jump to
Current section
Files
src/gleam@dynamic.erl
-module(gleam@dynamic).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([from/1, unsafe_coerce/1, dynamic/1, bit_array/1, bit_string/1, classify/1, int/1, float/1, bool/1, shallow_list/1, optional/1, any/1, decode1/2, result/2, list/1, string/1, field/2, optional_field/2, element/2, tuple2/2, tuple3/3, tuple4/4, tuple5/5, tuple6/6, dict/2, map/2, decode2/3, decode3/4, decode4/5, decode5/6, decode6/7, decode7/8, decode8/9, decode9/10]).
-export_type([dynamic_/0, decode_error/0, unknown_tuple/0]).
-type dynamic_() :: any().
-type decode_error() :: {decode_error, binary(), binary(), list(binary())}.
-type unknown_tuple() :: any().
-spec from(any()) -> dynamic_().
from(A) ->
gleam_stdlib:identity(A).
-spec unsafe_coerce(dynamic_()) -> any().
unsafe_coerce(A) ->
gleam_stdlib:identity(A).
-spec dynamic(dynamic_()) -> {ok, dynamic_()} | {error, list(decode_error())}.
dynamic(Value) ->
{ok, Value}.
-spec bit_array(dynamic_()) -> {ok, bitstring()} | {error, list(decode_error())}.
bit_array(Data) ->
gleam_stdlib:decode_bit_array(Data).
-spec bit_string(dynamic_()) -> {ok, bitstring()} |
{error, list(decode_error())}.
bit_string(Data) ->
bit_array(Data).
-spec put_expected(decode_error(), binary()) -> decode_error().
put_expected(Error, Expected) ->
erlang:setelement(2, Error, Expected).
-spec classify(dynamic_()) -> binary().
classify(Data) ->
gleam_stdlib:classify_dynamic(Data).
-spec int(dynamic_()) -> {ok, integer()} | {error, list(decode_error())}.
int(Data) ->
gleam_stdlib:decode_int(Data).
-spec float(dynamic_()) -> {ok, float()} | {error, list(decode_error())}.
float(Data) ->
gleam_stdlib:decode_float(Data).
-spec bool(dynamic_()) -> {ok, boolean()} | {error, list(decode_error())}.
bool(Data) ->
gleam_stdlib:decode_bool(Data).
-spec shallow_list(dynamic_()) -> {ok, list(dynamic_())} |
{error, list(decode_error())}.
shallow_list(Value) ->
gleam_stdlib:decode_list(Value).
-spec optional(fun((dynamic_()) -> {ok, DPG} | {error, list(decode_error())})) -> fun((dynamic_()) -> {ok,
gleam@option:option(DPG)} |
{error, list(decode_error())}).
optional(Decode) ->
fun(Value) -> gleam_stdlib:decode_option(Value, Decode) end.
-spec at_least_decode_tuple_error(integer(), dynamic_()) -> {ok, any()} |
{error, list(decode_error())}.
at_least_decode_tuple_error(Size, Data) ->
S = case Size of
1 ->
<<""/utf8>>;
_ ->
<<"s"/utf8>>
end,
Error = begin
_pipe = [<<"Tuple of at least "/utf8>>,
gleam@int:to_string(Size),
<<" element"/utf8>>,
S],
_pipe@1 = gleam@string_builder:from_strings(_pipe),
_pipe@2 = gleam@string_builder:to_string(_pipe@1),
{decode_error, _pipe@2, classify(Data), []}
end,
{error, [Error]}.
-spec any(list(fun((dynamic_()) -> {ok, DTN} | {error, list(decode_error())}))) -> fun((dynamic_()) -> {ok,
DTN} |
{error, list(decode_error())}).
any(Decoders) ->
fun(Data) -> case Decoders of
[] ->
{error,
[{decode_error, <<"another type"/utf8>>, classify(Data), []}]};
[Decoder | Decoders@1] ->
case Decoder(Data) of
{ok, Decoded} ->
{ok, Decoded};
{error, _} ->
(any(Decoders@1))(Data)
end
end end.
-spec all_errors({ok, any()} | {error, list(decode_error())}) -> list(decode_error()).
all_errors(Result) ->
case Result of
{ok, _} ->
[];
{error, Errors} ->
Errors
end.
-spec decode1(
fun((DTR) -> DTS),
fun((dynamic_()) -> {ok, DTR} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DTS} | {error, list(decode_error())}).
decode1(Constructor, T1) ->
fun(Value) -> case T1(Value) of
{ok, A} ->
{ok, Constructor(A)};
A@1 ->
{error, all_errors(A@1)}
end end.
-spec push_path(decode_error(), any()) -> decode_error().
push_path(Error, Name) ->
Name@1 = from(Name),
Decoder = any(
[fun string/1,
fun(X) -> gleam@result:map(int(X), fun gleam@int:to_string/1) end]
),
Name@3 = case Decoder(Name@1) of
{ok, Name@2} ->
Name@2;
{error, _} ->
_pipe = [<<"<"/utf8>>, classify(Name@1), <<">"/utf8>>],
_pipe@1 = gleam@string_builder:from_strings(_pipe),
gleam@string_builder:to_string(_pipe@1)
end,
erlang:setelement(4, Error, [Name@3 | erlang:element(4, Error)]).
-spec result(
fun((dynamic_()) -> {ok, DOU} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DOW} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, {ok, DOU} | {error, DOW}} |
{error, list(decode_error())}).
result(Decode_ok, Decode_error) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_result(Value),
fun(Inner_result) -> case Inner_result of
{ok, Raw} ->
gleam@result:'try'(
begin
_pipe = Decode_ok(Raw),
map_errors(
_pipe,
fun(_capture) ->
push_path(_capture, <<"ok"/utf8>>)
end
)
end,
fun(Value@1) -> {ok, {ok, Value@1}} end
);
{error, Raw@1} ->
gleam@result:'try'(
begin
_pipe@1 = Decode_error(Raw@1),
map_errors(
_pipe@1,
fun(_capture@1) ->
push_path(_capture@1, <<"error"/utf8>>)
end
)
end,
fun(Value@2) -> {ok, {error, Value@2}} end
)
end end
)
end.
-spec list(fun((dynamic_()) -> {ok, DPB} | {error, list(decode_error())})) -> fun((dynamic_()) -> {ok,
list(DPB)} |
{error, list(decode_error())}).
list(Decoder_type) ->
fun(Dynamic) ->
gleam@result:'try'(shallow_list(Dynamic), fun(List) -> _pipe = List,
_pipe@1 = gleam@list:try_map(_pipe, Decoder_type),
map_errors(
_pipe@1,
fun(_capture) -> push_path(_capture, <<"*"/utf8>>) end
) end)
end.
-spec map_errors(
{ok, DNP} | {error, list(decode_error())},
fun((decode_error()) -> decode_error())
) -> {ok, DNP} | {error, list(decode_error())}.
map_errors(Result, F) ->
gleam@result:map_error(
Result,
fun(_capture) -> gleam@list:map(_capture, F) end
).
-spec decode_string(dynamic_()) -> {ok, binary()} |
{error, list(decode_error())}.
decode_string(Data) ->
_pipe = bit_array(Data),
_pipe@1 = map_errors(
_pipe,
fun(_capture) -> put_expected(_capture, <<"String"/utf8>>) end
),
gleam@result:'try'(
_pipe@1,
fun(Raw) -> case gleam@bit_array:to_string(Raw) of
{ok, String} ->
{ok, String};
{error, nil} ->
{error,
[{decode_error,
<<"String"/utf8>>,
<<"BitArray"/utf8>>,
[]}]}
end end
).
-spec string(dynamic_()) -> {ok, binary()} | {error, list(decode_error())}.
string(Data) ->
decode_string(Data).
-spec field(
any(),
fun((dynamic_()) -> {ok, DPQ} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DPQ} | {error, list(decode_error())}).
field(Name, Inner_type) ->
fun(Value) ->
Missing_field_error = {decode_error,
<<"field"/utf8>>,
<<"nothing"/utf8>>,
[]},
gleam@result:'try'(
gleam_stdlib:decode_field(Value, Name),
fun(Maybe_inner) -> _pipe = Maybe_inner,
_pipe@1 = gleam@option:to_result(_pipe, [Missing_field_error]),
_pipe@2 = gleam@result:'try'(_pipe@1, Inner_type),
map_errors(
_pipe@2,
fun(_capture) -> push_path(_capture, Name) end
) end
)
end.
-spec optional_field(
any(),
fun((dynamic_()) -> {ok, DPU} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, gleam@option:option(DPU)} |
{error, list(decode_error())}).
optional_field(Name, Inner_type) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_field(Value, Name),
fun(Maybe_inner) -> case Maybe_inner of
none ->
{ok, none};
{some, Dynamic_inner} ->
_pipe = Dynamic_inner,
_pipe@1 = gleam_stdlib:decode_option(_pipe, Inner_type),
map_errors(
_pipe@1,
fun(_capture) -> push_path(_capture, Name) end
)
end end
)
end.
-spec element(
integer(),
fun((dynamic_()) -> {ok, DQC} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DQC} | {error, list(decode_error())}).
element(Index, Inner_type) ->
fun(Data) ->
gleam@result:'try'(
gleam_stdlib:decode_tuple(Data),
fun(Tuple) ->
Size = gleam_stdlib:size_of_tuple(Tuple),
gleam@result:'try'(case Index >= 0 of
true ->
case Index < Size of
true ->
gleam_stdlib:tuple_get(Tuple, Index);
false ->
at_least_decode_tuple_error(Index + 1, Data)
end;
false ->
case gleam@int:absolute_value(Index) =< Size of
true ->
gleam_stdlib:tuple_get(Tuple, Size + Index);
false ->
at_least_decode_tuple_error(
gleam@int:absolute_value(Index),
Data
)
end
end, fun(Data@1) -> _pipe = Inner_type(Data@1),
map_errors(
_pipe,
fun(_capture) -> push_path(_capture, Index) end
) end)
end
)
end.
-spec tuple_errors({ok, any()} | {error, list(decode_error())}, binary()) -> list(decode_error()).
tuple_errors(Result, Name) ->
case Result of
{ok, _} ->
[];
{error, Errors} ->
gleam@list:map(
Errors,
fun(_capture) -> push_path(_capture, Name) end
)
end.
-spec tuple2(
fun((dynamic_()) -> {ok, DRC} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRE} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, {DRC, DRE}} | {error, list(decode_error())}).
tuple2(Decode1, Decode2) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_tuple2(Value),
fun(_use0) ->
{A, B} = _use0,
case {Decode1(A), Decode2(B)} of
{{ok, A@1}, {ok, B@1}} ->
{ok, {A@1, B@1}};
{A@2, B@2} ->
_pipe = tuple_errors(A@2, <<"0"/utf8>>),
_pipe@1 = gleam@list:append(
_pipe,
tuple_errors(B@2, <<"1"/utf8>>)
),
{error, _pipe@1}
end
end
)
end.
-spec tuple3(
fun((dynamic_()) -> {ok, DRH} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRJ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRL} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, {DRH, DRJ, DRL}} | {error, list(decode_error())}).
tuple3(Decode1, Decode2, Decode3) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_tuple3(Value),
fun(_use0) ->
{A, B, C} = _use0,
case {Decode1(A), Decode2(B), Decode3(C)} of
{{ok, A@1}, {ok, B@1}, {ok, C@1}} ->
{ok, {A@1, B@1, C@1}};
{A@2, B@2, C@2} ->
_pipe = tuple_errors(A@2, <<"0"/utf8>>),
_pipe@1 = gleam@list:append(
_pipe,
tuple_errors(B@2, <<"1"/utf8>>)
),
_pipe@2 = gleam@list:append(
_pipe@1,
tuple_errors(C@2, <<"2"/utf8>>)
),
{error, _pipe@2}
end
end
)
end.
-spec tuple4(
fun((dynamic_()) -> {ok, DRO} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRQ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRS} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRU} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, {DRO, DRQ, DRS, DRU}} |
{error, list(decode_error())}).
tuple4(Decode1, Decode2, Decode3, Decode4) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_tuple4(Value),
fun(_use0) ->
{A, B, C, D} = _use0,
case {Decode1(A), Decode2(B), Decode3(C), Decode4(D)} of
{{ok, A@1}, {ok, B@1}, {ok, C@1}, {ok, D@1}} ->
{ok, {A@1, B@1, C@1, D@1}};
{A@2, B@2, C@2, D@2} ->
_pipe = tuple_errors(A@2, <<"0"/utf8>>),
_pipe@1 = gleam@list:append(
_pipe,
tuple_errors(B@2, <<"1"/utf8>>)
),
_pipe@2 = gleam@list:append(
_pipe@1,
tuple_errors(C@2, <<"2"/utf8>>)
),
_pipe@3 = gleam@list:append(
_pipe@2,
tuple_errors(D@2, <<"3"/utf8>>)
),
{error, _pipe@3}
end
end
)
end.
-spec tuple5(
fun((dynamic_()) -> {ok, DRX} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DRZ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSB} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSD} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSF} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, {DRX, DRZ, DSB, DSD, DSF}} |
{error, list(decode_error())}).
tuple5(Decode1, Decode2, Decode3, Decode4, Decode5) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_tuple5(Value),
fun(_use0) ->
{A, B, C, D, E} = _use0,
case {Decode1(A),
Decode2(B),
Decode3(C),
Decode4(D),
Decode5(E)} of
{{ok, A@1}, {ok, B@1}, {ok, C@1}, {ok, D@1}, {ok, E@1}} ->
{ok, {A@1, B@1, C@1, D@1, E@1}};
{A@2, B@2, C@2, D@2, E@2} ->
_pipe = tuple_errors(A@2, <<"0"/utf8>>),
_pipe@1 = gleam@list:append(
_pipe,
tuple_errors(B@2, <<"1"/utf8>>)
),
_pipe@2 = gleam@list:append(
_pipe@1,
tuple_errors(C@2, <<"2"/utf8>>)
),
_pipe@3 = gleam@list:append(
_pipe@2,
tuple_errors(D@2, <<"3"/utf8>>)
),
_pipe@4 = gleam@list:append(
_pipe@3,
tuple_errors(E@2, <<"4"/utf8>>)
),
{error, _pipe@4}
end
end
)
end.
-spec tuple6(
fun((dynamic_()) -> {ok, DSI} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSK} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSM} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSO} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSQ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSS} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, {DSI, DSK, DSM, DSO, DSQ, DSS}} |
{error, list(decode_error())}).
tuple6(Decode1, Decode2, Decode3, Decode4, Decode5, Decode6) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_tuple6(Value),
fun(_use0) ->
{A, B, C, D, E, F} = _use0,
case {Decode1(A),
Decode2(B),
Decode3(C),
Decode4(D),
Decode5(E),
Decode6(F)} of
{{ok, A@1},
{ok, B@1},
{ok, C@1},
{ok, D@1},
{ok, E@1},
{ok, F@1}} ->
{ok, {A@1, B@1, C@1, D@1, E@1, F@1}};
{A@2, B@2, C@2, D@2, E@2, F@2} ->
_pipe = tuple_errors(A@2, <<"0"/utf8>>),
_pipe@1 = gleam@list:append(
_pipe,
tuple_errors(B@2, <<"1"/utf8>>)
),
_pipe@2 = gleam@list:append(
_pipe@1,
tuple_errors(C@2, <<"2"/utf8>>)
),
_pipe@3 = gleam@list:append(
_pipe@2,
tuple_errors(D@2, <<"3"/utf8>>)
),
_pipe@4 = gleam@list:append(
_pipe@3,
tuple_errors(E@2, <<"4"/utf8>>)
),
_pipe@5 = gleam@list:append(
_pipe@4,
tuple_errors(F@2, <<"5"/utf8>>)
),
{error, _pipe@5}
end
end
)
end.
-spec dict(
fun((dynamic_()) -> {ok, DSV} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DSX} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, gleam@dict:dict(DSV, DSX)} |
{error, list(decode_error())}).
dict(Key_type, Value_type) ->
fun(Value) ->
gleam@result:'try'(
gleam_stdlib:decode_map(Value),
fun(Map) ->
gleam@result:'try'(
begin
_pipe = Map,
_pipe@1 = maps:to_list(_pipe),
gleam@list:try_map(
_pipe@1,
fun(Pair) ->
{K, V} = Pair,
gleam@result:'try'(
begin
_pipe@2 = Key_type(K),
map_errors(
_pipe@2,
fun(_capture) ->
push_path(
_capture,
<<"keys"/utf8>>
)
end
)
end,
fun(K@1) ->
gleam@result:'try'(
begin
_pipe@3 = Value_type(V),
map_errors(
_pipe@3,
fun(_capture@1) ->
push_path(
_capture@1,
<<"values"/utf8>>
)
end
)
end,
fun(V@1) -> {ok, {K@1, V@1}} end
)
end
)
end
)
end,
fun(Pairs) -> {ok, maps:from_list(Pairs)} end
)
end
)
end.
-spec map(
fun((dynamic_()) -> {ok, DTC} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DTE} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, gleam@dict:dict(DTC, DTE)} |
{error, list(decode_error())}).
map(Key_type, Value_type) ->
dict(Key_type, Value_type).
-spec decode2(
fun((DTV, DTW) -> DTX),
fun((dynamic_()) -> {ok, DTV} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DTW} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DTX} | {error, list(decode_error())}).
decode2(Constructor, T1, T2) ->
fun(Value) -> case {T1(Value), T2(Value)} of
{{ok, A}, {ok, B}} ->
{ok, Constructor(A, B)};
{A@1, B@1} ->
{error, gleam@list:concat([all_errors(A@1), all_errors(B@1)])}
end end.
-spec decode3(
fun((DUB, DUC, DUD) -> DUE),
fun((dynamic_()) -> {ok, DUB} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUC} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUD} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DUE} | {error, list(decode_error())}).
decode3(Constructor, T1, T2, T3) ->
fun(Value) -> case {T1(Value), T2(Value), T3(Value)} of
{{ok, A}, {ok, B}, {ok, C}} ->
{ok, Constructor(A, B, C)};
{A@1, B@1, C@1} ->
{error,
gleam@list:concat(
[all_errors(A@1), all_errors(B@1), all_errors(C@1)]
)}
end end.
-spec decode4(
fun((DUJ, DUK, DUL, DUM) -> DUN),
fun((dynamic_()) -> {ok, DUJ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUK} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUL} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUM} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DUN} | {error, list(decode_error())}).
decode4(Constructor, T1, T2, T3, T4) ->
fun(X) -> case {T1(X), T2(X), T3(X), T4(X)} of
{{ok, A}, {ok, B}, {ok, C}, {ok, D}} ->
{ok, Constructor(A, B, C, D)};
{A@1, B@1, C@1, D@1} ->
{error,
gleam@list:concat(
[all_errors(A@1),
all_errors(B@1),
all_errors(C@1),
all_errors(D@1)]
)}
end end.
-spec decode5(
fun((DUT, DUU, DUV, DUW, DUX) -> DUY),
fun((dynamic_()) -> {ok, DUT} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUU} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUV} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUW} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DUX} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DUY} | {error, list(decode_error())}).
decode5(Constructor, T1, T2, T3, T4, T5) ->
fun(X) -> case {T1(X), T2(X), T3(X), T4(X), T5(X)} of
{{ok, A}, {ok, B}, {ok, C}, {ok, D}, {ok, E}} ->
{ok, Constructor(A, B, C, D, E)};
{A@1, B@1, C@1, D@1, E@1} ->
{error,
gleam@list:concat(
[all_errors(A@1),
all_errors(B@1),
all_errors(C@1),
all_errors(D@1),
all_errors(E@1)]
)}
end end.
-spec decode6(
fun((DVF, DVG, DVH, DVI, DVJ, DVK) -> DVL),
fun((dynamic_()) -> {ok, DVF} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVG} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVH} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVI} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVJ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVK} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DVL} | {error, list(decode_error())}).
decode6(Constructor, T1, T2, T3, T4, T5, T6) ->
fun(X) -> case {T1(X), T2(X), T3(X), T4(X), T5(X), T6(X)} of
{{ok, A}, {ok, B}, {ok, C}, {ok, D}, {ok, E}, {ok, F}} ->
{ok, Constructor(A, B, C, D, E, F)};
{A@1, B@1, C@1, D@1, E@1, F@1} ->
{error,
gleam@list:concat(
[all_errors(A@1),
all_errors(B@1),
all_errors(C@1),
all_errors(D@1),
all_errors(E@1),
all_errors(F@1)]
)}
end end.
-spec decode7(
fun((DVT, DVU, DVV, DVW, DVX, DVY, DVZ) -> DWA),
fun((dynamic_()) -> {ok, DVT} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVU} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVV} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVW} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVX} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVY} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DVZ} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DWA} | {error, list(decode_error())}).
decode7(Constructor, T1, T2, T3, T4, T5, T6, T7) ->
fun(X) -> case {T1(X), T2(X), T3(X), T4(X), T5(X), T6(X), T7(X)} of
{{ok, A}, {ok, B}, {ok, C}, {ok, D}, {ok, E}, {ok, F}, {ok, G}} ->
{ok, Constructor(A, B, C, D, E, F, G)};
{A@1, B@1, C@1, D@1, E@1, F@1, G@1} ->
{error,
gleam@list:concat(
[all_errors(A@1),
all_errors(B@1),
all_errors(C@1),
all_errors(D@1),
all_errors(E@1),
all_errors(F@1),
all_errors(G@1)]
)}
end end.
-spec decode8(
fun((DWJ, DWK, DWL, DWM, DWN, DWO, DWP, DWQ) -> DWR),
fun((dynamic_()) -> {ok, DWJ} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWK} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWL} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWM} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWN} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWO} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWP} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DWQ} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DWR} | {error, list(decode_error())}).
decode8(Constructor, T1, T2, T3, T4, T5, T6, T7, T8) ->
fun(X) -> case {T1(X), T2(X), T3(X), T4(X), T5(X), T6(X), T7(X), T8(X)} of
{{ok, A},
{ok, B},
{ok, C},
{ok, D},
{ok, E},
{ok, F},
{ok, G},
{ok, H}} ->
{ok, Constructor(A, B, C, D, E, F, G, H)};
{A@1, B@1, C@1, D@1, E@1, F@1, G@1, H@1} ->
{error,
gleam@list:concat(
[all_errors(A@1),
all_errors(B@1),
all_errors(C@1),
all_errors(D@1),
all_errors(E@1),
all_errors(F@1),
all_errors(G@1),
all_errors(H@1)]
)}
end end.
-spec decode9(
fun((DXB, DXC, DXD, DXE, DXF, DXG, DXH, DXI, DXJ) -> DXK),
fun((dynamic_()) -> {ok, DXB} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXC} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXD} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXE} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXF} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXG} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXH} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXI} | {error, list(decode_error())}),
fun((dynamic_()) -> {ok, DXJ} | {error, list(decode_error())})
) -> fun((dynamic_()) -> {ok, DXK} | {error, list(decode_error())}).
decode9(Constructor, T1, T2, T3, T4, T5, T6, T7, T8, T9) ->
fun(X) ->
case {T1(X), T2(X), T3(X), T4(X), T5(X), T6(X), T7(X), T8(X), T9(X)} of
{{ok, A},
{ok, B},
{ok, C},
{ok, D},
{ok, E},
{ok, F},
{ok, G},
{ok, H},
{ok, I}} ->
{ok, Constructor(A, B, C, D, E, F, G, H, I)};
{A@1, B@1, C@1, D@1, E@1, F@1, G@1, H@1, I@1} ->
{error,
gleam@list:concat(
[all_errors(A@1),
all_errors(B@1),
all_errors(C@1),
all_errors(D@1),
all_errors(E@1),
all_errors(F@1),
all_errors(G@1),
all_errors(H@1),
all_errors(I@1)]
)}
end
end.