Is it possible to create custom type pool array using c++?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Robotex

I need a pool array for custom type. Can I create it?

:bust_in_silhouette: Reply From: Calinou

PoolArrays (PackedArrays in 4.0 and later) are restricted to specific built-in types, so you can’t create custom types for those. Instead, use the generic Array type.