package dolmen_type

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val array : Type.Ty.t -> Type.Ty.t -> Type.Ty.t

The type of functionnal arrays from one type to another.

type view = private [>
  1. | `Int
  2. | `Real
  3. | `Bitv of int
  4. | `Array of Type.Ty.t * Type.Ty.t
]

Partial views for types. These are used in the Array theory to enforce some restrictions logics impose on the types of arrays that cna occur.

val view : Type.Ty.t -> view

Partial view of a type.