c++20中有没有用std::array定义的成员函数?

Is there any member function defined with std::array in c++20?

据我所知,标准数组中没有像(sort, accumulate,push_back ..) 这样的成员,对吗?我认为所有这些不错的方法只适用于 vector

std::array中有很多成员函数,像begin、end、rbegin、rend、max_size、fill等,就像提到的here