Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Posts by dode
Asking the last five or so questions on SO (I am new here), I felt pretty much the same as you do. I've put a lot of effort in illustrating the problem and ask a concrete question. While others co...
To manage libmagic's magic_t aka magic_set* cookie with a unique_ptr and a custom deleter in a RAII wrapper, I have: struct MagicDeleter { // magic_t is already a pointer (magic_set*) ...
I've just learned about algorithms, ranges and views (from a book), including execution policy such as std::execution::par and I naively tried: import std; int main() { auto values {std::r...
