On Mon, 22 May 2023 at 17:50, Guillaume Racicot wrote:
> If we follow concept syntax, we could also use a concept name:
> auto f(std::vector<std::integral>) -> void {
Right, so then
auto f(std::vector<std::integral auto>) -> void;
and
auto f(std::vector<auto>) -> void;
would make fair amounts of sense.