Packages

Decode IAB GPP strings including the region specific sections they contain.

Current section

Files

Jump to
gpp lib gpp section_range.ex
Raw

lib/gpp/section_range.ex

defmodule Gpp.SectionRange do
@moduledoc false
@type t :: %__MODULE__{
size: non_neg_integer(),
max: non_neg_integer(),
range: [Gpp.IdRange.t()]
}
defstruct [:size, max: 0, range: []]
end