Hacker News
- GCC 13 Supports New C2x Features, Including Nullptr, Enhanced Enumerations https://www.infoq.com/news/2023/05/gcc13-c2x-features/ 101 comments
- Nullptr, constexpr, embedd, safer enums, type inference approved for C23 https://twitter.com/rcs/status/1550526425211584512 9 comments
- Is this terrible idea? A simple Box that allows polymorphic types but does not allow nullptr https://godbolt.org/z/71cdd7sbo 28 comments cpp
- [C23] The addition of nullptr and nullptr_t is bad https://ljabl.com/nullptr.xhtml 26 comments c_programming
- This shouldn't compile but it does: i = (std::list<Struct>::const_iterator) nullptr; None 6 comments freebsd
- GCC 13 Supports New C2x Features, Including nullptr, Enhanced Enumerations, and More https://www.infoq.com/news/2023/05/gcc13-c2x-features/ 42 comments c_programming
- C23 explored features: lambda, defer, type inference, integer safe arithmetic, nullptr, typeof http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p2391r0.pdf 130 comments c_programming
- Possibility of adding operators to handle nullptr easier ("??", "?->") https://www.reddit.com/r/cpp/comments/kxflj9/possibility_of_adding_operators_to_handle_nullptr/ 64 comments cpp
- shared_ptr initialized with nullptr is null or empty? https://www.nextptr.com/question/qa1372136808/shared_ptr-initialized-with-nullptr-is-null-or-empty 15 comments cpp
- C++23: fullptr to replace nullptr https://www.reddit.com/r/cpp/comments/b7uvif/c23_fullptr_to_replace_nullptr/ 75 comments cpp
- When MSDN says NULL, is it okay to use nullptr? https://blogs.msdn.microsoft.com/oldnewthing/20180307-00/?p=98175 29 comments cpp
- Introduction to C++11: nullptr and innovations of the initialization system http://kalnitsky.org/2011/09/04/introduction-to-cpp11-part-2/en/ 5 comments cpp
- GCC 4.6 released, adds more C++0x features: nullptr, noexcept, opaque enums, and more http://gcc.gnu.org/gcc-4.6/ 3 comments cpp
- Explaining The New C++ Standard (C++0x) And Its Implementation In VC10 -- auto, decltype, nullptr, static_assert, lamba exprs, trailing return types, r-value references... http://www.codeproject.com/kb/cpp/cpp10.aspx 137 comments programming
- C++0x's unique_ptr and nullptr for C++03 http://y_z.scripts.mit.edu/wp/2009/03/01/unique_ptr-and-nullptr-for-c03/ 11 comments programming