mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-05 19:00:31 -05:00
documentation stuff
This commit is contained in:
parent
c71595f691
commit
136df67606
3 changed files with 13 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue