What Is An Extended Friend Declaration in Modern C++?
July 14, 2023
In modern C++ the standards have a wonderfully named extended friend declaration feature to address the class declarations which is a template parameter as a friend. This extended friend declaration is available with the C++ compiler that has C++11 and above standards. In this post, we explain a friend and extended friend declaration in modern C++.
What is a friend declaration in modern…