Current section
Files
Jump to
Current section
Files
src/regions.erl
-module(regions).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/regions.gleam").
-export_type([dataset/0]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
?MODULEDOC(" Datasets for internal library usage.\n").
-type dataset() :: {dataset, binary(), binary(), list(list(binary()))}.