Desmond Gold

1,237
reputation
1
6
14

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);
}