Flecs v3.2
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
array.hpp File Reference

Array class. More...

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  flecs::array_iterator< T >
 
struct  flecs::array< T, Size, Enable >
 
struct  flecs::array< T, Size, enable_if_t< Size !=0 > >
 
struct  flecs::array< T, Size, enable_if_t< Size==0 > >
 

Functions

template<typename T , size_t Size>
array< T, Size > flecs::to_array (const T(&elems)[Size])
 

Detailed Description

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.

Function Documentation

◆ to_array()

template<typename T , size_t Size>
array< T, Size > flecs::to_array ( const T(&) elems[Size])

Definition at line 90 of file array.hpp.