Construct List from static array, inferring element type.
int[3] values = [1, 2, 3]; assert(list(values) == values);
See Implementation
Construct List from static array, inferring element type.