![]() |
Flecs v4.1
A fast entity component system (ECS) for C & C++
|
Array class. More...
Go to the source code of this file.
Classes | |
| struct | flecs::array_iterator< T > |
| Iterator for flecs::array. More... | |
| struct | flecs::array< T, Size, Enable > |
| Array class (primary template, disabled). More... | |
| struct | flecs::array< T, Size, enable_if_t< Size !=0 > > |
| Array class specialization for non-zero sizes. More... | |
| struct | flecs::array< T, Size, enable_if_t< Size==0 > > |
| Array class specialization for zero-sized arrays. More... | |
Functions | |
| template<typename T , size_t Size> | |
| array< T, Size > | flecs::to_array (const T(&elems)[Size]) |
| Create a flecs::array from a C array. | |
Array class.
Array class. Simple std::array-like utility that is mostly there to aid template code where template expansion would lead to an array with size 0.
Definition in file array.hpp.
| array< T, Size > flecs::to_array | ( | const T(&) | elems[Size] | ) |
Create a flecs::array from a C array.