| sqrat
    0.9
    sqrat | 
|   Sqrat | |
|    DefaultAllocator | |
|    NoConstructor | |
|    CopyOnly | |
|    NoCopy | |
|    ArrayBase | The base class for Array that implements almost all of its functionality | 
|    Array | Represents an array in Squirrel | 
|    Var< Array > | Used to get and push Array instances to and from the stack as references (arrays are always references in Squirrel) | 
|    Var< Array & > | Used to get and push Array instances to and from the stack as references (arrays are always references in Squirrel) | 
|    Class | |
|    DerivedClass | |
|    Enumeration | |
|    ConstTable | |
|    Function | Represents a function in Squirrel | 
|    Var< Function > | Used to get and push Function instances to and from the stack as references (functions are always references in Squirrel) | 
|    Var< Function & > | Used to get and push Function instances to and from the stack as references (functions are always references in Squirrel) | 
|    Object | |
|     iterator | Iterator for going over the slots in the object using Object::Next | 
|    Var< Object > | Used to get and push Object instances to and from the stack as references (Object is always a reference) | 
|    Var< Object & > | Used to get and push Object instances to and from the stack as references (Object is always a reference) | 
|    Script | Helper class for managing Squirrel scripts | 
|    TableBase | The base class for Table that implements almost all of its functionality | 
|    Table | Represents a table in Squirrel | 
|    RootTable | |
|    RegistryTable | |
|    Var< Table > | Used to get and push Table instances to and from the stack as references (tables are always references in Squirrel) | 
|    Var< Table & > | Used to get and push Table instances to and from the stack as references (tables are always references in Squirrel) | 
|    Var | |
|    Var< T & > | |
|    Var< T * > | |
|    Var< T *const  > | |
|    Var< const T & > | |
|    Var< const T * > | |
|    Var< const T *const  > | |
|    Var< SharedPtr< T > > | |
|    Var< bool > | Used to get and push bools to and from the stack | 
|    Var< const bool > | Used to get and push const bools to and from the stack | 
|    Var< const bool & > | Used to get and push const bool references to and from the stack | 
|    Var< SQChar * > | Used to get and push SQChar arrays to and from the stack (usually is a char array) | 
|    Var< const SQChar * > | Used to get and push const SQChar arrays to and from the stack (usually is a const char array) | 
|    Var< string > | Used to get and push strings to and from the stack (string is usually std::string) | 
|    Var< string & > | Used to get and push string references to and from the stack as copies (strings are always copied) | 
|    Var< const string & > | Used to get and push const string references to and from the stack as copies (strings are always copied) | 
|    DefaultVM | Helper class that defines a VM that can be used as a fallback VM in case no other one is given to a piece of code | 
|    Error | |
|    ErrorHandling | |
|    SharedPtr | |
|    SqratVM | Helper class that wraps a Squirrel virtual machine in a C++ API | 
 1.8.6
 1.8.6