A C++ standard library construct for accessing the location of a line of source code, at compile time.
C++20 introduced a class which enables compile-time access and manipulation of the location of lines of source code. With earlier standard versions of the language, one had to avail one's self of the __FILE__
and __LINE__
macros for a similar functionality.
See a longer description with examples on cppreference.com.