List.isSized

Whether List has fixed size, which means it is backed by a static array

struct List(T, long N = -1)
enum isSized = N >= 0;

Meta