module Make: functor (S : Identifier) -> sig type t = S.t * Biocaml_range.t val make : S.t -> int -> int -> t Core.Std.Or_error.t val seq : t -> S.t val size : t -> int val to_string : t -> string val t_of_sexp : Sexplib.Sexp.t -> t val sexp_of_t : t -> Sexplib.Sexp.t val compare : t -> t -> int String representation of a sequence range, as <seq>:<start>-<end> end
functor (
S
:
Identifier
) ->
sig
type t = S.t * Biocaml_range.t
S.t * Biocaml_range.t
val make : S.t -> int -> int -> t Core.Std.Or_error.t
S.t -> int -> int -> t Core.Std.Or_error.t
val seq : t -> S.t
t -> S.t
val size : t -> int
t -> int
val to_string : t -> string
t -> string
val t_of_sexp : Sexplib.Sexp.t -> t
Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
t -> Sexplib.Sexp.t
val compare : t -> t -> int
t -> t -> int
end