C++ attribute: nodiscard (since C++17)
From cppreference.com
< cpplrm; | languagelrm; | attributes
If a function declared nodiscard or a function returning an enumeration or class declared nodiscard by value is called from a discarded-value expression other than a cast to void, the compiler is encouraged to issue a warning.
Syntax
[[nodiscard]]
|
|||||||||
Explanation
Appears in a function declaration, enumeration declaration, or class declaration.
If a function declared nodiscard or a function returning an enumeration or class declared nodiscard by value is called from a discarded-value expression other than a cast to void, the compiler is encouraged to issue a warning.
Example
Run this code
struct [[nodiscard]] error_info { }; error_info enable_missile_safety_mode(); void launch_missiles(); void test_missiles() { enable_missile_safety_mode(); // compiler may warn on discarding a nodiscard value launch_missiles(); } error_info& foo(); void f1() { foo(); // nodiscard type is not returned by value, no warning }
Standard library
The following standard functions are declared with nodiscard
attribute:
Allocation functions | |
allocation functions (function) | |
allocates uninitialized storage (public member function of std::allocator ) | |
[static] |
allocates uninitialized storage using the allocator (public static member function of std::allocator_traits ) |
allocates memory (public member function of std::pmr::memory_resource ) | |
Allocate memory (public member function of std::pmr::polymorphic_allocator ) | |
allocates uninitialized storage using the outer allocator (public member function of std::scoped_allocator_adaptor ) | |
Emptiness-checking functions | |
(C++17) |
checks whether the container is empty (function) |
checks whether the node handle is empty (public member function of node handle )
| |
checks whether the container is empty (public member function of std::array ) | |
checks whether the string is empty (public member function of std::basic_string ) | |
checks whether the view is empty (public member function of std::basic_string_view ) | |
checks whether the container is empty (public member function of std::deque ) | |
checks whether the container is empty (public member function of std::forward_list ) | |
checks whether the container is empty (public member function of std::list ) | |
checks whether the container is empty (public member function of std::map ) | |
checks whether the match was successful (public member function of std::match_results ) | |
checks whether the container is empty (public member function of std::multimap ) | |
checks whether the container is empty (public member function of std::multiset ) | |
checks whether the underlying container is empty (public member function of std::priority_queue ) | |
checks whether the underlying container is empty (public member function of std::queue ) | |
checks whether the container is empty (public member function of std::set ) | |
checks whether the underlying container is empty (public member function of std::stack ) | |
checks whether the container is empty (public member function of std::unordered_map ) | |
checks whether the container is empty (public member function of std::unordered_multimap ) | |
checks whether the container is empty (public member function of std::unordered_multiset ) | |
checks whether the container is empty (public member function of std::unordered_set ) | |
checks whether the container is empty (public member function of std::vector ) | |
checks if the path is empty (public member function of std::filesystem::path ) | |
Miscellaneous | |
(C++11) |
runs a function asynchronously (potentially in a new thread) and returns a std::future that will hold the result (function template) |
(C++17) |
pointer optimization barrier (function template) |