documentation stuff

This commit is contained in:
Simon Cruanes 2015-04-10 16:30:09 +02:00
parent c71595f691
commit 136df67606
3 changed files with 13 additions and 1 deletions

View file

@ -24,7 +24,10 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*)
(** {1 Map specialized for Int keys} *)
(** {1 Map specialized for Int keys}
{b status: unstable}
@since NEXT_RELEASE *)
type 'a t

View file

@ -1,4 +1,12 @@
(** {1 Experiment with Backtracking Monad}
Playing stuff, don't use (yet?).
{b status: experimental}
@since NEXT_RELEASE
*)
module type MONAD = sig
type 'a t
val return : 'a -> 'a t

View file

@ -28,6 +28,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Some useful functions built on top of Unix.
{b status: unstable}
@since NEXT_RELEASE *)
type 'a or_error = [`Ok of 'a | `Error of string]