package oxbow

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

Module Oxbow_state.BoxSource

Sourcetype 'a t = {
  1. mutable body : 'a option;
}
Sourceval fill : 'a t -> 'a -> unit

fill box body sets box's contents to body.

Effects: mutates WM state

Sourceval clear : 'a t -> unit

clear box empties box.

Effects: mutates WM state