Cerberus X Documentation

Module cerberus.boxes

The boxes module provides a set of classes that allow you to use 'box' objects. More...

Declarations

Imported By
cerberus
Please note that only documented modules are listed here, there might be undocumented modules that import this one.
Classes
ArrayObject<T> The ArrayObject box class is a generic class that can be used to encapsulate an array inside an object.
BoolObject The BoolObject box class can be used to encapsulate an bool value inside an object.
FloatObject The FloatObject box class can be used to encapsulate a float value inside an object.
IntObject The IntObject box class can be used to encapsulate an int value inside an object.
StringObject The StringObject box class can be used to encapsulate a string value inside an object.

Detailed Discussion

The boxes module provides a set of classes that allow you to use 'box' objects.

A box object is an object that provides a container for non-object values. This is sometimes useful in situations when you would like to use non-object values with code designed to work solely with objects.