package zarr

  1. Overview
  2. Docs
type t =
  1. | Char of char
    (*

    A single character string.

    *)
  2. | Bool of bool
    (*

    Must be a JSON boolean.

    *)
  3. | Int of Stdint.uint64
    (*

    Value must be a JSON number with no fractional or exponent part that is within the representable range of the corresponding integer data type.

    *)
  4. | Float of float
    (*

    Value representing a JSON float.

    *)
  5. | FloatBits of float
    (*

    A JSON string specifying a byte representation of the float a hexstring.

    *)
  6. | IntComplex of Complex.t
    (*

    A JSON 2-element array of integers representing a complex number.

    *)
  7. | FloatComplex of Complex.t
    (*

    A JSON 2-element array of floats representing a complex number.

    *)
  8. | FFComplex of Complex.t
  9. | FBComplex of Complex.t
  10. | BFComplex of Complex.t
  11. | BBComplex of Complex.t
    (*

    Provides an element value to use for uninitialised portions of a Zarr array. The permitted values depend on the data type.

    *)
OCaml

Innovation. Community. Security.