You can search for identifiers within the package.
in-package search v0.2.0
type t = private {
user : string;
repo : string;
}
The type for Github repositories.
type state = [
| `Monitored
| `Ignored
]
The type for repository state.
val v : user:string -> repo:string -> t
v user string will create a fresh t.
v user string
t
val of_string : string -> t option
of_string s parses strings of the form ":user/:repo".
of_string s
":user/:repo"
val pp : t Fmt.t
pp is the pretty-printer for Github repositories.
pp
val compare : t -> t -> int
compare compares repositories.
compare
val pp_state : state Fmt.t
pp_state is the pretty-printer for repository state.
pp_state
module Set : SET with type elt = t
Sets of repositories.
module Map : MAP with type key = t
Maps of repositories.