# nn **Repository Path**: mirrors_dropbox/nn ## Basic Information - **Project Name**: nn - **Description**: Non-nullable pointers for C++ - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # `nn`: Non-nullable pointers for C++ `nn` is a type that helps you enforce at compile time the contract that a given pointer can't be null. It wraps around raw pointers or smart pointers, and works particularly well out of the box with `std::unique_ptr` and `std::shared_ptr`. Here's an example: ```cpp class Widget : public WidgetBase { public: Widget(nn_shared_ptr gadget) : m_gadget(move(gadget)) {} // ... private: nn_shared_ptr m_gadget; }; // nn_make_unique and nn_make_shared always return non-null values nn_unique_ptr my_widget = nn_make_unique(nn_make_shared()); // but what if we have a pointer already and we don't know if it's null? shared_ptr this_might_be_null = ... my_widget = nn_make_unique(NN_CHECK_ASSERT(this_might_be_null)); // implicit nn_unique_ptr -> nn_shared_ptr works just like unique_ptr -> shared_ptr nn_shared_ptr shared_widget = move(my_widget); // the `nn` implicitly casts away if needed void save_ownership_somewhere(shared_ptr); save_ownership_somewhere(shared_widget); // implicit upcasts work too nn_shared_ptr base_ptr = shared_widget; ``` Compile-time checking helps find bugs sooner. At Dropbox we use `nn` pervasively in our cross-platform C++ codebase. ## Compatibility nn is C++11 compatible. Tested with GCC 4.8, clang 3.6+ and MSVS 2015.