Current section
Files
Jump to
Current section
Files
src/internal@foo.erl
-module(internal@foo).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([fixture_foo/0]).
-export_type([foo_json/0]).
-type foo_json() :: {foo,
boolean(),
integer(),
float(),
{integer(), binary()},
gleam@option:option(integer()),
list(binary())}.
-spec fixture_foo() -> foo_json().
fixture_foo() ->
{foo,
true,
1,
1.0,
{2, <<"3"/utf8>>},
{some, 4},
[<<"a"/utf8>>, <<"b"/utf8>>]}.