Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Desmond Gold

Desmond Gold

Desmond Gold has asked 16 questions and find answers to 0 problems.

Stats

80
EtPoint
0
Vote count
16
questions
0
answers

About

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