Module Typing.Bigarray

type kind =
  1. | Float16
  2. | Float32
  3. | Float32_t
  4. | Float64
  5. | Int8_signed
  6. | Int8_unsigned
  7. | Int16_signed
  8. | Int16_unsigned
  9. | Int32
  10. | Int64
  11. | Int
  12. | Nativeint
  13. | Complex32
  14. | Complex64
type layout =
  1. | C
  2. | Fortran
type t = {
  1. kind : kind;
  2. layout : layout;
}