package bistro-bio

  1. Overview
  2. Docs
type 'a t =
  1. | Single_end of 'a
  2. | Paired_end of 'a * 'a
val map : 'a t -> f:('a -> 'b) -> 'b t
val fst : 'a t -> 'a