[ci skip] tfw you forget to add it to the table of contents

This commit is contained in:
ThePhD 2016-11-04 19:44:51 -04:00
parent d1c203b0c5
commit 76bed7a09c
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,7 @@ Browse the various function and classes :doc:`Sol<../index>` utilizes to make yo
state
table
proxy
containers
as_table
usertype
simple_usertype

View File

@ -22,4 +22,5 @@ There are also some notes about guarantees you can find about usertypes, and the
* The first ``sizeof( void* )`` bytes is always a pointer to the typed C++ memory. What comes after is based on what you've pushed into the system according to :doc:`the memory specification for usertypes<api/usertype_memory>`. This is compatible with a number of systems.
* Member methods, properties, variables and functions taking ``self&`` arguments modify data directly
- Work on a copy by taking or returning a copy by value.
* The actual metatable associated with the usertype has a long name and is defined to be opaque by the Sol implementation.
* The actual metatable associated with the usertype has a long name and is defined to be opaque by the Sol implementation.
* Containers get pushed as special usertypes, but can be disabled if problems arising as detailed :doc:`here<api/containers>`.