In Effective Modern C++, "Iterm 8: Prefer nullptr to 0 and NULL.", Page 59, it says:
nullptr
's actual type isstd::nullptr_t
, and, in a wonderfully circular definition,std::nullptr_t
is defined to be the type ofnullptr
.
A wonderfully circular definition?
How that comes?