Variadic Templates
Reading Time: 2 minutes Variadic templates are nice where in you can actually let the compiler generate or instantiate the functions which would be used. Consider […]
Reading Time: 2 minutes Variadic templates are nice where in you can actually let the compiler generate or instantiate the functions which would be used. Consider […]
Reading Time: 2 minutes So you’ve decided to code something and you think templates are better suited for it since it’ll make it more generic. Let’s […]
Reading Time: 2 minutes You might’ve used std::shared_ptr or std::unique_ptr earlier or at least might have heard about them. So what are these let’s have a […]
Reading Time: < 1 minute You might’ve seen things like int &&ref but in case you’re wondering what ref is, it’s a rvalue reference. To put in […]
Reading Time: 2 minutes Quicksort This is an in place sort algorithm which works on divide and conquer technique. The idea is pretty simple pick an […]