{ $class-description "A data type holding a single value in the " { $link box-value } " slot. The " { $link box-full? } " slot indicates if the value is set." } ;
HELP:<box>
{ $values { "box" box } }
{ $description "Creates a new empty box." } ;
HELP:>box
{ $values { "value"object } { "box" box } }
{ $description "Stores a value into a box." }
{ $errors "Throws an error if the box is full." } ;
HELP:box>
{ $values { "box" box } { "value""the value of the box" } }
{ $description "Removes a value from a box." }
{ $errors "Throws an error if the box is empty." } ;