Current section
Files
Jump to
Current section
Files
src/blah@address.erl
-module(blah@address).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([country/0, country_code/0, alpha3_coutry_code/0, state/0, state_code/0, city/0, street/0, zip_code/0, direction/0, direction_code/0, full_address/0, time_zone/0]).
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 5).
-spec country() -> binary().
country() ->
blah@en@address:country().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 9).
-spec country_code() -> binary().
country_code() ->
blah@en@address:country_code().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 13).
-spec alpha3_coutry_code() -> binary().
alpha3_coutry_code() ->
blah@en@address:alpha3_country_code().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 17).
-spec state() -> binary().
state() ->
blah@en@address:state().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 21).
-spec state_code() -> binary().
state_code() ->
blah@en@address:state_code().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 25).
-spec city() -> binary().
city() ->
blah@en@address:city().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 29).
-spec street() -> binary().
street() ->
blah@en@address:street().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 33).
-spec zip_code() -> binary().
zip_code() ->
blah@en@address:zip_code().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 37).
-spec direction() -> binary().
direction() ->
blah@en@address:direction().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 41).
-spec direction_code() -> binary().
direction_code() ->
blah@en@address:direction_code().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 45).
-spec full_address() -> binary().
full_address() ->
blah@en@address:full_address().
-file("/home/runner/work/blah/blah/src/blah/address.gleam", 49).
-spec time_zone() -> binary().
time_zone() ->
blah@en@address:time_zone().