Exploring ref qualifiers in C++
Recently I've been wondering about ref qualifiers in C++.
Exploring ref qualifiers in C++
by Jens Weller
From the article:
Ref qualifiers are today an old C++11 feature, and recently I wanted to know more about them. Especially their potential use cases.
Thats a particular point with this feature, I've seen examples - but often without a compelling use case. This feature is a great way to achieve very specific things in C++...

In today's post, I will explain one of C++'s biggest pitfalls: 
Ever wondered why your clean, object-oriented design sometimes slows things down? This piece breaks down how virtual dispatch impacts performance—and how techniques like devirtualization and static polymorphism can eliminate that overhead entirely.