package mopsa

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Make.ExecCache

type !'a t = {
  1. elements : ((Core.Route.route * Core.Ast.Stmt.stmt * Domain.t Token.TokenMap.t * Core.Alarm.report) * 'a) option array;
  2. size : int;
  3. mutable next : int;
}
val create : int -> 'a t