![]() |
Home | Libraries | People | FAQ | More |
boost::container::insert_return_type_base
// In header: <boost/container/node_handle.hpp> template<typename Iterator, typename NodeType> struct insert_return_type_base { // construct/copy/destruct (); (insert_return_type_base &&); template<typename RelatedIt, typename RelatedNode> (, , ); insert_return_type_base & (insert_return_type_base &&); // public data members inserted; position; node; };
A class template used to describe the results of inserting a Container::node_type in a Container with unique keys. Includes at least the following non-static public data members:
bool inserted;
Iterator position;
NodeType node
This type is MoveConstructible, MoveAssignable, DefaultConstructible, Destructible, and lvalues of that type are swappable
insert_return_type_base
public
construct/copy/destruct();
(insert_return_type_base && other);
template<typename RelatedIt, typename RelatedNode> ( insert, it, n);
insert_return_type_base & (insert_return_type_base && other);