package swhid_core

  1. Overview
  2. Docs

Module to work with qualifiers. They are documented here.

type t =
  1. | Anchor of Core_identifier.t
  2. | Origin of string
  3. | Path of string
  4. | Visit of Core_identifier.t
  5. | Fragment of int * int option

The type of qualifiers.

val of_string : string -> (t, string) Stdlib.result

of_string s is Ok v if s is a valid qualifier, otherwise it is Error e.

val pp : Stdlib.Format.formatter -> t -> unit

pp fmt v prints v on formatter fmt.

val to_string : t -> string

to_string v is the representation of v as a string.