package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. algorithm : Checksum_algorithm.t;
    (*

    The algorithm used to calculate this checksum.

    *)
  2. checksum : string;
    (*

    Value of the checksum.

    *)
}

The checksum of an item calculated by the specified algorithm.

val make : algorithm:Checksum_algorithm.t -> checksum:string -> t
val to_yojson : t -> Yojson.Safe.t