Current section
Files
Jump to
Current section
Files
lib/xberg/page_range.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b2c29ab80fb9cdb8c5190a7808ad862ad890f416ad887092447b282a5b1b69e0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.PageRange do
@moduledoc "Page range for a chunk (0-indexed, inclusive)."
@typedoc "Page range for a chunk (0-indexed, inclusive)."
@type t :: %__MODULE__{
start: non_neg_integer(),
end: non_neg_integer()
}
defstruct start: 0,
end: 0
end