package mopsa

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

Module LineEdit.FIFOSource

Sourcetype t = {
  1. mutable cin : char list;
  2. mutable cout : char list;
}
Sourceval create : unit -> t
Sourceval is_empty : t -> bool
Sourceval length : t -> int
Sourceval add : t -> char -> unit
Sourceval get : t -> char
Sourceval get_opt : t -> char option
Sourceval clear : t -> unit