Desmond Gold

1,517
reputation
1
7
19

I'm here to ask some questions that may be silly :>

My most favorite one:

auto add(std::integral auto&&... args) {
    return (std::forward<decltype(args)>(args) + ... + 0);
}