package volgo

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Vcs.Ref_kindSource

Sourcetype t =
  1. | Local_branch of {
    1. branch_name : Branch_name.t;
    }
  2. | Remote_branch of {
    1. remote_branch_name : Remote_branch_name.t;
    }
  3. | Tag of {
    1. tag_name : Tag_name.t;
    }
  4. | Other of {
    1. name : string;
    }
Sourceval compare : t -> t -> int
Sourceval equal : t -> t -> bool
Sourceval hash : t -> int
Sourceval seeded_hash : int -> t -> int
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval to_string : t -> string