-
Notifications
You must be signed in to change notification settings - Fork 19
Data Types
Baptiste Wicht edited this page Sep 2, 2016
·
1 revision
All ETL data structures are typed and can only contains one type of elements. While it can theoratically holds any type, it especially made for number types.
ETL is highly optimized for:
floatdouble
It is partially optimized for:
std::complex<float>std::complex<double>
It supports integer types such as int and long as well, but is not optimized for them.
If you find a standard type for which ETL data structures do not work as intended, please open an issue.