(** Type of ordered address scope classifications *)
type scope =
| Point
| Interface
| Link
| Admin
| Site
| Organization
| Global
with sexp
(** A collection of functions for IPv4 addresses. *)
module V4 : sig
(** [scope ipv4] is the classification of [ipv4] by the {! scope }
hierarchy. *)
val scope : t -> scope
end
The reference to scope in the doc for V4.scope ends up pointing to itself rather than to the unit-level scope.
The reference to
scope
in the doc forV4.scope
ends up pointing to itself rather than to the unit-levelscope
.