We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ClassInfo specializations for all the STL containers.
ClassInfo
Should be one-indexed to stay consistent with Lua.
std::array
std::vector
std::deque
std::forward_list
std::list
std::initializer_list
std::span
std::set
std::multiset
std::map
std::multimap
std::unordered_set
std::unordered_multiset
std::unordered_map
std::unordered_multimap
std::stack
std::queue
std::priority_queue
Allow for conversion between Lua tables and varargs in various representations.
The text was updated successfully, but these errors were encountered:
Possseidon
No branches or pull requests
Support STL containers in Lua.
Add
ClassInfo
specializations for all the STL containers.Containers
Sequence containers
Should be one-indexed to stay consistent with Lua.
std::array
std::vector
std::deque
std::forward_list
std::list
std::initializer_list
(not strictly a container)std::span
(C++20, also not strictly a container)Associative containers
std::set
std::multiset
std::map
std::multimap
Unordered associative containers
std::unordered_set
std::unordered_multiset
std::unordered_map
std::unordered_multimap
Container adaptors
std::stack
std::queue
std::priority_queue
General functionality
Allow for conversion between Lua tables and varargs in various representations.
The text was updated successfully, but these errors were encountered: