For the array I do a little hackery. You can define the array without an initial value in the container and I can guess the value type.
arr = [] arr.append(1)
std::vector<decltype(1)> arr{}; arr.push_back(1);
For the array I do a little hackery. You can define the array without an initial value in the container and I can guess the value type.
it will spit out