Revision e1325438e46255788da31bdb9a68f89d5d127848 authored by phink on 26 March 2024, 06:30:35 UTC, committed by Marge Bot on 29 March 2024, 12:21:04 UTC
1 parent d556d8c
Raw File
commit.mli
(*
 * Copyright (c) 2013-2022 Thomas Gazagnaire <thomas@gazagnaire.org>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *)

(** Commit values represent the store history.

    Every commit contains a list of predecessor commits, and the collection of
    commits form an acyclic directed graph.

    Every commit also can contain an optional key, pointing to a
    {{!Backend.Commit.Store} node} value. See the {{!Backend.Node.Store} Node}
    signature for more details on node values. *)

include Commit_intf.Sigs
(** @inline *)
back to top