You can search for identifiers within the package.
in-package search v0.2.0
type author = {
name : string;
uri : string option;
email : string option;
}
type date = int * int * int * int * int
val compare : date -> date -> int
type link = {
rel : [ `alternate | `self ];
href : Uri.t;
typ : string option;
val mk_link : ?rel:[ `alternate | `self ] -> ?typ:string -> Uri.t -> link
type meta = {
id : string;
title : string;
subtitle : string option;
author : author option;
rights : string option;
updated : date;
links : link list;
type summary = string option
type entry = {
entry : meta;
summary : summary;
content : Xml.t;
base : string option;
type feed = {
feed : meta;
entries : entry list;
val xml_of_feed : ?self:string -> feed -> Xml.t